diff options
-rw-r--r-- | web/lib/credentials.inc.php | 2 | ||||
-rw-r--r-- | web/lib/pkgfuncs.inc.php | 12 |
2 files changed, 0 insertions, 14 deletions
diff --git a/web/lib/credentials.inc.php b/web/lib/credentials.inc.php index 614f2d9..cf1fcca 100644 --- a/web/lib/credentials.inc.php +++ b/web/lib/credentials.inc.php @@ -15,7 +15,6 @@ define("CRED_PKGBASE_EDIT_COMAINTAINERS", 24); define("CRED_PKGBASE_FLAG", 11); define("CRED_PKGBASE_LIST_VOTERS", 12); define("CRED_PKGBASE_NOTIFY", 13); -define("CRED_PKGBASE_SUBMIT_BLACKLISTED", 14); define("CRED_PKGBASE_UNFLAG", 15); define("CRED_PKGBASE_VOTE", 16); define("CRED_PKGREQ_FILE", 23); @@ -65,7 +64,6 @@ function has_credential($credential, $approved_users=array()) { case CRED_PKGBASE_EDIT_COMAINTAINERS: case CRED_PKGBASE_DISOWN: case CRED_PKGBASE_LIST_VOTERS: - case CRED_PKGBASE_SUBMIT_BLACKLISTED: case CRED_PKGBASE_UNFLAG: case CRED_PKGREQ_CLOSE: case CRED_PKGREQ_LIST: diff --git a/web/lib/pkgfuncs.inc.php b/web/lib/pkgfuncs.inc.php index 35b0e4e..f03134c 100644 --- a/web/lib/pkgfuncs.inc.php +++ b/web/lib/pkgfuncs.inc.php @@ -43,18 +43,6 @@ function can_delete_comment_array($comment) { } /** - * Determine if the visitor can submit blacklisted packages. - * - * Only Trusted Users and Developers can delete blacklisted packages. Packages - * are blacklisted if they are include in the official repositories. - * - * @return bool True if the user can submit blacklisted packages, otherwise false - */ -function can_submit_blacklisted() { - return has_credential(CRED_PKGBASE_SUBMIT_BLACKLISTED); -} - -/** * Check to see if the package name already exists in the database * * @param string $name The package name to check |