Hide add cat if user does not have mange_categories cap. Props Mark Jaquith. fixes #2432

git-svn-id: http://svn.automattic.com/wordpress/trunk@3516 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2006-02-12 07:46:34 +00:00
parent 30bb2362e2
commit 17b47c6fe0
1 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,8 @@
if (!isset($_GET["page"])) require_once('admin.php');
if ( $editing ) {
$dbx_js = true;
$cat_js = true;
if ( current_user_can('manage_categories') )
$cat_js = true;
}
if ( $list_js || $cat_js )
$sack_js = true;