Search Everything - Version 7.0.4

Version Description

  • Urgent bugfix - changed migration script
Download this release

Release Info

Developer sparkica
Plugin Icon wp plugin Search Everything
Version 7.0.4
Comparing to
See all releases

Code changes from version 7.0.3 to 7.0.4

Files changed (3) hide show
  1. config.php +11 -1
  2. readme.txt +4 -1
  3. search-everything.php +2 -2
config.php CHANGED
@@ -72,7 +72,7 @@ function se_upgrade() {
72
 
73
  if($version) {
74
  if(version_compare($version, SE_VERSION, '<')) {
75
- call_user_func('wp_se_migrate_' . str_replace('.', '_', $version));
76
  se_upgrade();
77
  }
78
  } else {
@@ -86,6 +86,16 @@ function se_upgrade() {
86
  }
87
  }
88
 
 
 
 
 
 
 
 
 
 
 
89
 
90
  function se_migrate_7_0_2() {
91
 
72
 
73
  if($version) {
74
  if(version_compare($version, SE_VERSION, '<')) {
75
+ call_user_func('se_migrate_' . str_replace('.', '_', $version));
76
  se_upgrade();
77
  }
78
  } else {
86
  }
87
  }
88
 
89
+ function se_migrate_7_0_3() {
90
+
91
+ $se_meta = get_option('se_meta', false);
92
+
93
+ if ($se_meta) {
94
+ $se_meta['version'] = '7.0.4';
95
+ }
96
+ update_option('se_meta',$se_meta);
97
+ }
98
+
99
 
100
  function se_migrate_7_0_2() {
101
 
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: zemanta
3
  Tags: search, search highlight, tag search, category search, category exclusion, comment search, page search, admin, seo, post filter
4
  Requires at least: 3
5
  Tested up to: 3.8.1
6
- Stable tag: 7.0.3
7
 
8
  Search Everything increases WordPress' default search functionality in three easy steps.
9
 
@@ -92,6 +92,9 @@ Please open a new issue at [github Issues](https://github.com/zemanta/search-eve
92
 
93
  == Changelog ==
94
 
 
 
 
95
  = 7.0.3 =
96
  * Fixed vulnerability issue in se_search_default and started escaping terms
97
  * Refactored code, extracted html from PHP code
3
  Tags: search, search highlight, tag search, category search, category exclusion, comment search, page search, admin, seo, post filter
4
  Requires at least: 3
5
  Tested up to: 3.8.1
6
+ Stable tag: 7.0.4
7
 
8
  Search Everything increases WordPress' default search functionality in three easy steps.
9
 
92
 
93
  == Changelog ==
94
 
95
+ = 7.0.4 =
96
+ * Urgent bugfix - changed migration script
97
+
98
  = 7.0.3 =
99
  * Fixed vulnerability issue in se_search_default and started escaping terms
100
  * Refactored code, extracted html from PHP code
search-everything.php CHANGED
@@ -3,12 +3,12 @@
3
  Plugin Name: Search Everything
4
  Plugin URI: https://github.com/Zemanta/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: 7.0.3
7
  Author: Zemanta
8
  Author URI: http://www.zemanta.com
9
  */
10
 
11
- define('SE_VERSION', '7.0.3');
12
 
13
  if (!defined('SE_PLUGIN_FILE'))
14
  define('SE_PLUGIN_FILE', plugin_basename(__FILE__));
3
  Plugin Name: Search Everything
4
  Plugin URI: https://github.com/Zemanta/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: 7.0.4
7
  Author: Zemanta
8
  Author URI: http://www.zemanta.com
9
  */
10
 
11
+ define('SE_VERSION', '7.0.4');
12
 
13
  if (!defined('SE_PLUGIN_FILE'))
14
  define('SE_PLUGIN_FILE', plugin_basename(__FILE__));