Plugin Directory

Changeset 1266175


Ignore:
Timestamp:
10/14/2015 11:29:46 PM (10 years ago)
Author:
luistinygod
Message:

regression to wp 4.3.1

Location:
gsearch-plus/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • gsearch-plus/trunk/gee-search-plus.php

    r1006727 r1266175  
    22/*
    33Plugin Name: geeSearch Plus
    4 Version: 1.4.2
     4Version: 1.4.3
    55Plugin URI: http://www.geethemes.com
    66Description: Improves the WordPress search engine without messing with the database, sorts results by relevance, and more. Simple and clean!
     
    3737}
    3838
    39 define( 'GEE_SP_VERSION', '1.4.2' );
     39define( 'GEE_SP_VERSION', '1.4.3' );
    4040
    4141
  • gsearch-plus/trunk/inc/class-search-plus.php

    r1006727 r1266175  
    6666     */
    6767    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'] ) ) {
    6969            $query->query_vars['post_type'] = array( 'any' );
    7070        }
  • gsearch-plus/trunk/readme.txt

    r1006727 r1266175  
    44Tags: search, relevance, improve search, custom post types search, custom taxonomies search, custom fields, stopwords, stella multi-language, highlight search terms
    55Requires at least: 3.5
    6 Tested up to: 4.0
    7 Stable tag: 1.4.2
     6Tested up to: 4.3.1
     7Stable tag: 1.4.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8080== Changelog ==
    8181
     82= 1.4.3 =
     83* Fixed: PHP notices
     84* Tested against WP version 4.3.1 - all fine!
     85
    8286= 1.4.2 =
    8387* Fixed: Convert specific stopwords to lowercase on save
Note: See TracChangeset for help on using the changeset viewer.