diff --git a/wp-admin/admin-footer.php b/wp-admin/admin-footer.php index 520f51240..13781d3b1 100644 --- a/wp-admin/admin-footer.php +++ b/wp-admin/admin-footer.php @@ -17,6 +17,10 @@ do_action('in_admin_footer', ''); $upgrade = apply_filters( 'update_footer', '' ); echo __('Thank you for creating with WordPress').' | '.__('Documentation').' | '.__('Feedback').' '.$upgrade; + +$quick_edit_help = array( 'edit.php', 'edit-pages.php', 'edit-comments.php', 'edit-tags.php', 'categories.php', 'edit-link-categories.php' ); +if ( in_array($pagenow, $quick_edit_help) ) + echo '
' . __('Hint: double-click on a row to open Quick Edit.'); ?>

diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index 2acf9b3e1..6901ff20d 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -123,7 +123,6 @@ function _cat_row( $category, $level, $name_override = false ) { $edit = "name)) . "'>" . attribute_escape( $name ) . '
'; $actions = array(); $actions['edit'] = '' . __('Edit') . ''; - $actions['inline hide-if-no-js'] = '' . __('Quick Edit') . ''; if ( $default_cat_id != $category->term_id ) $actions['delete'] = "term_id) . "' onclick=\"if ( confirm('" . js_escape(sprintf(__("You are about to delete this category '%s'\n 'Cancel' to stop, 'OK' to delete."), $name )) . "') ) { return true;}return false;\">" . __('Delete') . ""; $action_count = count($actions); @@ -207,7 +206,7 @@ function inline_edit_term_row($type) { $hidden = (array) get_user_option( "manage-$type-columns-hidden" ); ?>
-