Plugin Directory

Changeset 1362506


Ignore:
Timestamp:
03/02/2016 11:08:55 AM (10 years ago)
Author:
seorets
Message:

3.3.64

Location:
seo-rets/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • seo-rets/trunk/readme.txt

    r1361815 r1362506  
    55Requires at least: 3.0.1
    66Tested up to: 4.4
    7 Stable tag: 3.3.63
     7Stable tag: 3.3.64
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4646
    4747== Changelog ==
     48= 3.3.64 =
     49
     50* Fix search bug.
     51
    4852= 3.3.63 =
    4953
  • seo-rets/trunk/seo-rets.php

    r1361815 r1362506  
    44Plugin URI: http://seorets.com
    55Description: Convert your RETS/IDX feed into an SEO friendly real estate portal
    6 Version: 3.3.63
     6Version: 3.3.64
    77Author: SEO RETS, LLC
    88Author URI: http://seorets.com
     
    189189// Things that happen if the requested page is the Admin dashboard
    190190            wp_enqueue_style('sr-admin', $this->css_resources_dir . 'admin.css');
    191             wp_enqueue_script( 'my_custom_script', $this->plugin_dir.'resources/js/seorets.min.js' );
     191            wp_enqueue_script('my_custom_script', $this->plugin_dir . 'resources/js/seorets.min.js');
    192192
    193193            add_action('admin_menu', array($this, 'setup_menu'));
     
    26622662                if ($condition->f == "address") {
    26632663                    $val = explode(" ", $condition->v);
     2664                    $cond = array();
    26642665                    foreach ($val as $key => $addreline) {
    26652666                        $new_fov = new STDClass();
     
    26682669                        $new_fov->loose = isset($condition->l) ? 1 : 0;
    26692670                        $new_fov->value = $addreline;
    2670                         $return_obj->conditions[] = (array)$new_fov;
     2671                        $cond['conditions'][] = (array)$new_fov;
    26712672                    }
    2672 
     2673                    $cond['boolopr'] = 'AND';
     2674                    $return_obj->conditions[] = (array)$cond;
    26732675                } else {
    26742676                    $new_fov = new STDClass();
  • seo-rets/trunk/version.ini

    r1361815 r1362506  
    1 3.3.63
     13.3.64
Note: See TracChangeset for help on using the changeset viewer.