Changeset 1362506
- Timestamp:
- 03/02/2016 11:08:55 AM (10 years ago)
- Location:
- seo-rets/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (2 diffs)
-
seo-rets.php (modified) (4 diffs)
-
version.ini (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
seo-rets/trunk/readme.txt
r1361815 r1362506 5 5 Requires at least: 3.0.1 6 6 Tested up to: 4.4 7 Stable tag: 3.3.6 37 Stable tag: 3.3.64 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 46 46 47 47 == Changelog == 48 = 3.3.64 = 49 50 * Fix search bug. 51 48 52 = 3.3.63 = 49 53 -
seo-rets/trunk/seo-rets.php
r1361815 r1362506 4 4 Plugin URI: http://seorets.com 5 5 Description: Convert your RETS/IDX feed into an SEO friendly real estate portal 6 Version: 3.3.6 36 Version: 3.3.64 7 7 Author: SEO RETS, LLC 8 8 Author URI: http://seorets.com … … 189 189 // Things that happen if the requested page is the Admin dashboard 190 190 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'); 192 192 193 193 add_action('admin_menu', array($this, 'setup_menu')); … … 2662 2662 if ($condition->f == "address") { 2663 2663 $val = explode(" ", $condition->v); 2664 $cond = array(); 2664 2665 foreach ($val as $key => $addreline) { 2665 2666 $new_fov = new STDClass(); … … 2668 2669 $new_fov->loose = isset($condition->l) ? 1 : 0; 2669 2670 $new_fov->value = $addreline; 2670 $ return_obj->conditions[] = (array)$new_fov;2671 $cond['conditions'][] = (array)$new_fov; 2671 2672 } 2672 2673 $cond['boolopr'] = 'AND'; 2674 $return_obj->conditions[] = (array)$cond; 2673 2675 } else { 2674 2676 $new_fov = new STDClass(); -
seo-rets/trunk/version.ini
r1361815 r1362506 1 3.3.6 31 3.3.64
Note: See TracChangeset
for help on using the changeset viewer.