Index: modules/node/node.admin.inc =================================================================== RCS file: /cvs/drupal/drupal/modules/node/node.admin.inc,v retrieving revision 1.7 diff -u -r1.7 node.admin.inc --- modules/node/node.admin.inc 24 Oct 2007 09:15:04 -0000 1.7 +++ modules/node/node.admin.inc 24 Oct 2007 11:22:56 -0000 @@ -70,11 +70,6 @@ return; } -function node_admin_search() { - $keys = isset($_POST['keys']) ? $_POST['keys'] : NULL; - return drupal_get_form('search_form', url('admin/content/search'), $keys, 'node') . search_data($keys, 'node'); -} - /** * Implementation of hook_node_operations(). */ Index: modules/node/node.module =================================================================== RCS file: /cvs/drupal/drupal/modules/node/node.module,v retrieving revision 1.895 diff -u -r1.895 node.module --- modules/node/node.module 19 Oct 2007 10:19:02 -0000 1.895 +++ modules/node/node.module 24 Oct 2007 11:22:16 -0000 @@ -47,8 +47,6 @@ return $output; case 'admin/content/node': return ' '; // Return a non-null value so that the 'more help' link is shown. - case 'admin/content/search': - return '

'. t('Enter a simple pattern to search for a post. Words are matched exactly. Phrases can be surrounded by quotes to do an exact search.') .'

'; case 'admin/content/types': return '

'. t('Below is a list of all the content types on your site. All posts that exist on your site are instances of one of these content types.') .'

'; case 'admin/content/types/add': @@ -1250,16 +1248,6 @@ 'weight' => -10, ); - if (module_exists('search')) { - $items['admin/content/search'] = array( - 'title' => 'Search content', - 'description' => 'Search content by keyword.', - 'page callback' => 'node_admin_search', - 'access arguments' => array('administer nodes'), - 'file' => 'node.admin.inc', - ); - } - $items['admin/content/node-settings'] = array( 'title' => 'Post settings', 'description' => 'Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the front page.',