I'm trying to limit the search in the WP admin area to just post titles.
I found code that offered a suggestion, however, this is not limiting the search to only the post/page titles:
add_filter( 'posts_search', 'wpse_45153_filter_search', null, 2 );
function wpse_45153_filter_search( $search, $a_wp_query ) {
if ( !is_admin() ) return $search; // work only in the dashboard
$search = preg_replace( "# OR \(.*posts\.post_content LIKE \\'%.*%\\'\)#", "", $search );
return $search;
}