From 59b28172bea67233ed9b8dd35965892adac34b02 Mon Sep 17 00:00:00 2001 From: ryan Date: Sun, 18 Jul 2010 13:53:58 +0000 Subject: [PATCH] Add cap check. Props duck_. see #14343 git-svn-id: http://svn.automattic.com/wordpress/trunk@15439 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/edit-tags.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wp-admin/edit-tags.php b/wp-admin/edit-tags.php index 5fc181569..01d979946 100644 --- a/wp-admin/edit-tags.php +++ b/wp-admin/edit-tags.php @@ -19,6 +19,9 @@ if ( !taxonomy_exists($taxonomy) ) $tax = get_taxonomy($taxonomy); +if ( ! current_user_can($tax->cap->manage_terms) ) + wp_die(__('Cheatin’ uh?')); + $title = $tax->labels->name; if ( empty($post_type) || !in_array( $post_type, get_post_types( array('public' => true) ) ) )