Add braces in case our belt gives out after a large meal. Props westi. fixes #2609
git-svn-id: https://develop.svn.wordpress.org/trunk@3675 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
f16c66b3d6
commit
b6d7b43d2d
@ -44,9 +44,13 @@ case 'delete':
|
|||||||
$cat_ID = (int) $_GET['cat_ID'];
|
$cat_ID = (int) $_GET['cat_ID'];
|
||||||
$cat_name = get_catname($cat_ID);
|
$cat_name = get_catname($cat_ID);
|
||||||
|
|
||||||
if ( 1 == $cat_ID )
|
// Don't delete the default cats.
|
||||||
|
if ( $cat_ID == get_option('default_category') )
|
||||||
die(sprintf(__("Can't delete the <strong>%s</strong> category: this is the default one"), $cat_name));
|
die(sprintf(__("Can't delete the <strong>%s</strong> category: this is the default one"), $cat_name));
|
||||||
|
|
||||||
|
if ( $cat_ID == get_option('default_link_category') )
|
||||||
|
die(sprintf(__("Can't delete the <strong>%s</strong> category: this is the default one for bookmarks"), $cat_name));
|
||||||
|
|
||||||
wp_delete_category($cat_ID);
|
wp_delete_category($cat_ID);
|
||||||
|
|
||||||
header('Location: categories.php?message=2');
|
header('Location: categories.php?message=2');
|
||||||
|
Loading…
Reference in New Issue
Block a user