Remove duplicated create_function calls an use a private _search_terms_tidy function instead for tidying up the post/page searching when looking to attach orphans to a parent post or page.
git-svn-id: http://svn.automattic.com/wordpress/trunk@12052 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
@@ -1197,7 +1197,7 @@ case 'find_posts':
|
||||
$what = isset($_POST['pages']) ? 'page' : 'post';
|
||||
$s = stripslashes($_POST['ps']);
|
||||
preg_match_all('/".*?("|$)|((?<=[\\s",+])|^)[^\\s",+]+/', $s, $matches);
|
||||
$search_terms = array_map(create_function('$a', 'return trim($a, "\\"\'\\n\\r ");'), $matches[0]);
|
||||
$search_terms = array_map('_search_terms_tidy', $matches[0]);
|
||||
|
||||
$searchand = $search = '';
|
||||
foreach( (array) $search_terms as $term) {
|
||||
|
||||
Reference in New Issue
Block a user