From 27015b92ee64cde4a761530b92cf6e1f061dbbf4 Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 24 May 2010 16:09:52 +0000 Subject: [PATCH] Fix update label for link categories. Props duck_. fixes #13515 git-svn-id: http://svn.automattic.com/wordpress/trunk@14841 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/template.php | 2 +- wp-includes/taxonomy.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index 6f43ecddf..513c1c35e 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -13,7 +13,7 @@ * * @since 2.7 * - * Outputs the HTML for the hidden table rows used in Categories, Link Caregories and Tags quick edit. + * Outputs the HTML for the hidden table rows used in Categories, Link Categories and Tags quick edit. * * @param string $type "edit-tags", "categoried" or "edit-link-categories" * @param string $taxonomy The taxonomy of the row. diff --git a/wp-includes/taxonomy.php b/wp-includes/taxonomy.php index 35781df6f..023c1f40b 100644 --- a/wp-includes/taxonomy.php +++ b/wp-includes/taxonomy.php @@ -52,6 +52,7 @@ function create_initial_taxonomies() { 'labels' => array( 'name' => __( 'Categories' ), 'singular_name' => __( 'Category' ), + 'update_item' => __( 'Update Category' ), ), 'query_var' => false, 'rewrite' => false,