From b97b898d8087b446a140b30ee0ef07e8b5da7bd9 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Mon, 24 May 2010 16:09:52 +0000 Subject: [PATCH] Fix update label for link categories. Props duck_. fixes #13515 git-svn-id: https://develop.svn.wordpress.org/trunk@14841 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 6f43ecddfb..513c1c35ef 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 35781df6f9..023c1f40b0 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,