The button in update.php that says "apply pending updates" should be

From:  <>

"Apply pending updates" instead.
---

 modules/search/search.module |   10 ++++++++++
 update.php                   |    4 ++--
 2 files changed, 12 insertions(+), 2 deletions(-)

diff --git modules/search/search.module modules/search/search.module
index ee691e7..cf1ce5c 100644
--- modules/search/search.module
+++ modules/search/search.module
@@ -213,6 +213,16 @@ function search_menu() {
   );
 
   foreach (module_implements('search') as $module) {
+    $items['search/' . $module] = array(
+      'title callback' => 'module_invoke',
+      'title arguments' => array($module, 'search', 'name', TRUE),
+      'page callback' => 'search_view',
+      'page arguments' => array($module),
+      'access callback' => '_search_menu',
+      'access arguments' => array($module),
+      'type' => MENU_LOCAL_TASK,
+      'parent' => 'search',
+    );
     $items['search/' . $module . '/%menu_tail'] = array(
       'title callback' => 'module_invoke',
       'title arguments' => array($module, 'search', 'name', TRUE),
diff --git update.php update.php
index d67d843..6be4b28 100644
--- update.php
+++ update.php
@@ -282,7 +282,7 @@ function update_script_selection_form() {
     );
     $form['submit'] = array(
       '#type' => 'submit',
-      '#value' => 'apply pending updates',
+      '#value' => 'Apply pending updates',
     );
   }
   return $form;
@@ -716,7 +716,7 @@ if (!empty($update_free_access) || $user->uid == 1) {
         break;
       }
 
-    case 'apply pending updates':
+    case 'Apply pending updates':
       if (isset($_GET['token']) && $_GET['token'] == drupal_get_token('update')) {
         update_batch();
         break;
