Plugin Directory

Changeset 2907172


Ignore:
Timestamp:
05/02/2023 08:35:47 PM (3 years ago)
Author:
showcaseidx
Message:

Version 3.2.5

Location:
showcase-idx/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • showcase-idx/trunk/3/install.php

    r2800689 r2907172  
    99  add_option( 'showcaseidx_search_page',  'properties' );
    1010
    11   if (getenv('SHOWCASEIDX_AGENT_HOST')) {
    12     update_option('showcaseidx_dev_agent_host', getenv('SHOWCASEIDX_AGENT_HOST'));
    13   }
    14 
    15   if (getenv('SHOWCASEIDX_SEARCH_HOST')) {
    16     update_option('showcaseidx_dev_search_host', getenv('SHOWCASEIDX_SEARCH_HOST'));
    17   }
    18 
    19 
    2011  if(getenv('SHOWCASEIDX_WEBSITE_UUID')) {
    2112    update_option('showcaseidx_website_uuid', getenv('SHOWCASEIDX_WEBSITE_UUID'));
    2213    update_option('showcaseidx_website_name', 'Showcase IDX Local Dev');
    2314  }
    24 
    25   define( 'SHOWCASEIDX_SEARCH_HOST', get_option( 'showcaseidx_dev_search_host' ) ?: 'https://search.showcaseidx.com' );
    26   define( 'SHOWCASEIDX_AGENT_HOST', get_option( 'showcaseidx_dev_agent_host' ) ?: 'https://admin.showcaseidx.com' );
    2715}
    2816
  • showcase-idx/trunk/readme.txt

    r2848220 r2907172  
    33Tags: real estate search, idx search, idx, showcase idx, MLS
    44Requires at least: 4.6
    5 Tested up to: 6.1.1
     5Tested up to: 6.2
    66Requires PHP: 5.3.0
    7 Stable tag: 3.2.4
     7Stable tag: 3.2.5
    88
    99The ideal plugin for adding MLS search to your website, portal-quality search, lead generation, and SEO that works.
     
    141141
    142142== Changelog ==
     143
     144=3.2.5 =
     145*Added compatiblity with WordPress 6.2.
     146*Addresses a PHP issue that occurred for some sites when installing the IDX plugin on PHP 8.
    143147
    144148=3.2.4 =
  • showcase-idx/trunk/showcaseidx.php

    r2848220 r2907172  
    66 * Author: Showcase IDX
    77 * Author URI: https://showcaseidx.com/
    8  * Version: 3.2.4
     8 * Version: 3.2.5
    99 */
    1010
     
    1818define('SHOWCASEIDX_ACCOUNT_STATUS_EXPIRED', 'expired');
    1919define('SHOWCASEIDX_ACCOUNT_STATUS_INVALID', 'invalid');
     20define('SHOWCASEIDX_SEARCH_HOST', 'https://search.showcaseidx.com');
     21define('SHOWCASEIDX_AGENT_HOST', 'https://admin.showcaseidx.com');
    2022
    2123if ( get_option( 'showcaseidx_product_version' ) != '3' ) {
Note: See TracChangeset for help on using the changeset viewer.