Relevanssi – A Better Search - Version 4.3.1.1

Version Description

  • Remove notice about undefined index.
Download this release

Release Info

Developer msaari
Plugin Icon 128x128 Relevanssi – A Better Search
Version 4.3.1.1
Comparing to
See all releases

Code changes from version 4.3.0 to 4.3.1.1

Files changed (2) hide show
  1. readme.txt +13 -1
  2. relevanssi.php +2 -1
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: search, relevance, better search
5
  Requires at least: 4.8.3
6
  Tested up to: 5.2.2
7
  Requires PHP: 5.6
8
- Stable tag: 4.3.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -129,6 +129,12 @@ Each document database is full of useless words. All the little words that appea
129
  * John Calahan for extensive 4.0 beta testing.
130
 
131
  == Changelog ==
 
 
 
 
 
 
132
  = 4.3.0 =
133
  * New feature: Multi-phrase searches now respect AND and OR operators. If multiple phrases are included in an OR search, any posts with at least one phrase will be included. In AND search, all phrases must be included.
134
  * New feature: Admin search has been improved: there's a post type dropdown and the search is triggered when you press enter. The debug information has a `div` tag around it with the id `debugging`, so you can hide them with CSS if you want to. The numbering of results also makes more sense.
@@ -162,6 +168,12 @@ Each document database is full of useless words. All the little words that appea
162
  * Minor fix: Phrases with numbers and one word like "team 17" didn't work, because numbers weren't counted as words.
163
 
164
  == Upgrade notice ==
 
 
 
 
 
 
165
  = 4.3.0 =
166
  * Major bug fixes for taxonomy queries, new features and smaller improvements.
167
 
5
  Requires at least: 4.8.3
6
  Tested up to: 5.2.2
7
  Requires PHP: 5.6
8
+ Stable tag: 4.3.1.1
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
129
  * John Calahan for extensive 4.0 beta testing.
130
 
131
  == Changelog ==
132
+ = 4.3.1.1 =
133
+ * Remove notice about undefined index.
134
+
135
+ = 4.3.1 =
136
+ * Adding a missing file.
137
+
138
  = 4.3.0 =
139
  * New feature: Multi-phrase searches now respect AND and OR operators. If multiple phrases are included in an OR search, any posts with at least one phrase will be included. In AND search, all phrases must be included.
140
  * New feature: Admin search has been improved: there's a post type dropdown and the search is triggered when you press enter. The debug information has a `div` tag around it with the id `debugging`, so you can hide them with CSS if you want to. The numbering of results also makes more sense.
168
  * Minor fix: Phrases with numbers and one word like "team 17" didn't work, because numbers weren't counted as words.
169
 
170
  == Upgrade notice ==
171
+ = 4.3.1.1 =
172
+ * Remove an error notice.
173
+
174
+ = 4.3.1 =
175
+ * Fixes the broken 4.3.0 release.
176
+
177
  = 4.3.0 =
178
  * Major bug fixes for taxonomy queries, new features and smaller improvements.
179
 
relevanssi.php CHANGED
@@ -13,7 +13,7 @@
13
  * Plugin Name: Relevanssi
14
  * Plugin URI: https://www.relevanssi.com/
15
  * Description: This plugin replaces WordPress search with a relevance-sorting search.
16
- * Version: 4.3.0
17
  * Author: Mikko Saari
18
  * Author URI: http://www.mikkosaari.fi/
19
  * Text Domain: relevanssi
@@ -58,6 +58,7 @@ $relevanssi_variables['database_version'] = 5;
58
  $relevanssi_variables['file'] = __FILE__;
59
  $relevanssi_variables['plugin_dir'] = plugin_dir_path( __FILE__ );
60
  $relevanssi_variables['plugin_basename'] = plugin_basename( __FILE__ );
 
61
 
62
  require_once 'lib/admin-ajax.php';
63
  require_once 'lib/common.php';
13
  * Plugin Name: Relevanssi
14
  * Plugin URI: https://www.relevanssi.com/
15
  * Description: This plugin replaces WordPress search with a relevance-sorting search.
16
+ * Version: 4.3.1.1
17
  * Author: Mikko Saari
18
  * Author URI: http://www.mikkosaari.fi/
19
  * Text Domain: relevanssi
58
  $relevanssi_variables['file'] = __FILE__;
59
  $relevanssi_variables['plugin_dir'] = plugin_dir_path( __FILE__ );
60
  $relevanssi_variables['plugin_basename'] = plugin_basename( __FILE__ );
61
+ $relevanssi_variables['plugin_version'] = '4.3.1.1';
62
 
63
  require_once 'lib/admin-ajax.php';
64
  require_once 'lib/common.php';