Version Description
Download this release
Release Info
Developer | dancameron |
Plugin | Search Everything |
Version | 6.8.2 |
Comparing to | |
See all releases |
Code changes from version 6.8.1 to 6.8.2
- readme.txt +1 -1
- search-everything.php +1 -2
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://bit.ly/plugin-donations
|
|
4 |
Tags: search, search highlight, tag search, category search, category exclusion, comment search, page search, admin, seo, post filter
|
5 |
Requires at least: 3
|
6 |
Tested up to: 3.3
|
7 |
-
Stable tag: 6.8.
|
8 |
|
9 |
Increases Wordpress' default search functionality in three easy steps.
|
10 |
|
4 |
Tags: search, search highlight, tag search, category search, category exclusion, comment search, page search, admin, seo, post filter
|
5 |
Requires at least: 3
|
6 |
Tested up to: 3.3
|
7 |
+
Stable tag: 6.8.2
|
8 |
|
9 |
Increases Wordpress' default search functionality in three easy steps.
|
10 |
|
search-everything.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Search Everything
|
4 |
Plugin URI: https://github.com/sproutventure/search-everything-wordpress-plugin/
|
5 |
Description: Adds search functionality without modifying any template pages: Activate, Configure and Search. Options Include: search highlight, search pages, excerpts, attachments, drafts, comments, tags and custom fields (metadata). Also offers the ability to exclude specific pages and posts. Does not search password-protected content.
|
6 |
-
Version: 6.8.
|
7 |
Author: Dan Cameron of Sprout Venture
|
8 |
Author URI: http://sproutventure.com/
|
9 |
*/
|
@@ -161,7 +161,6 @@ Class SearchEverything {
|
|
161 |
$search_terms = array($s);
|
162 |
} else {
|
163 |
preg_match_all('/".*?("|$)|((?<=[\\s",+])|^)[^\\s",+]+/', $s, $matches);
|
164 |
-
echo '<!--'.var_export($matches, true).'-->'."\n\n";
|
165 |
$search_terms = array_map(create_function('$a', 'return trim($a, "\\"\'\\n\\r ");'), $matches[0]);
|
166 |
}
|
167 |
}
|
3 |
Plugin Name: Search Everything
|
4 |
Plugin URI: https://github.com/sproutventure/search-everything-wordpress-plugin/
|
5 |
Description: Adds search functionality without modifying any template pages: Activate, Configure and Search. Options Include: search highlight, search pages, excerpts, attachments, drafts, comments, tags and custom fields (metadata). Also offers the ability to exclude specific pages and posts. Does not search password-protected content.
|
6 |
+
Version: 6.8.2
|
7 |
Author: Dan Cameron of Sprout Venture
|
8 |
Author URI: http://sproutventure.com/
|
9 |
*/
|
161 |
$search_terms = array($s);
|
162 |
} else {
|
163 |
preg_match_all('/".*?("|$)|((?<=[\\s",+])|^)[^\\s",+]+/', $s, $matches);
|
|
|
164 |
$search_terms = array_map(create_function('$a', 'return trim($a, "\\"\'\\n\\r ");'), $matches[0]);
|
165 |
}
|
166 |
}
|