Changeset 1266175
- Timestamp:
- 10/14/2015 11:29:46 PM (10 years ago)
- Location:
- gsearch-plus/trunk
- Files:
-
- 3 edited
-
gee-search-plus.php (modified) (2 diffs)
-
inc/class-search-plus.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gsearch-plus/trunk/gee-search-plus.php
r1006727 r1266175 2 2 /* 3 3 Plugin Name: geeSearch Plus 4 Version: 1.4. 24 Version: 1.4.3 5 5 Plugin URI: http://www.geethemes.com 6 6 Description: Improves the WordPress search engine without messing with the database, sorts results by relevance, and more. Simple and clean! … … 37 37 } 38 38 39 define( 'GEE_SP_VERSION', '1.4. 2' );39 define( 'GEE_SP_VERSION', '1.4.3' ); 40 40 41 41 -
gsearch-plus/trunk/inc/class-search-plus.php
r1006727 r1266175 66 66 */ 67 67 function fix_too_many_post_types( $query ) { 68 if( is_array( $query->query_vars['post_type'] ) && in_array( 'any', $query->query_vars['post_type'] ) ) {68 if( array_key_exists( 'post_type', $query->query_vars ) && is_array( $query->query_vars['post_type'] ) && in_array( 'any', $query->query_vars['post_type'] ) ) { 69 69 $query->query_vars['post_type'] = array( 'any' ); 70 70 } -
gsearch-plus/trunk/readme.txt
r1006727 r1266175 4 4 Tags: search, relevance, improve search, custom post types search, custom taxonomies search, custom fields, stopwords, stella multi-language, highlight search terms 5 5 Requires at least: 3.5 6 Tested up to: 4. 07 Stable tag: 1.4. 26 Tested up to: 4.3.1 7 Stable tag: 1.4.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 80 80 == Changelog == 81 81 82 = 1.4.3 = 83 * Fixed: PHP notices 84 * Tested against WP version 4.3.1 - all fine! 85 82 86 = 1.4.2 = 83 87 * Fixed: Convert specific stopwords to lowercase on save
Note: See TracChangeset
for help on using the changeset viewer.