Plugin Directory

Changeset 3179036


Ignore:
Timestamp:
10/30/2024 05:54:10 PM (16 months ago)
Author:
flexmls
Message:

Flexmls WordPress plugin 3.14.24

Location:
flexmls-idx/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • flexmls-idx/trunk/README.txt

    r3169439 r3179036  
    55Tested up to: 6.7
    66Requires PHP: 7.4
    7 Stable tag: 3.14.23
     7Stable tag: 3.14.24
    88
    99Add Flexmls® IDX listings, market statistics, IDX searches, and a contact form on your web site.
     
    8686
    8787== Changelog ==
     88= 3.14.24 =
     89Efficiency Update
     90* Fixed Log-In Widget Caching Issue
     91
    8892= 3.14.23 =
    8993Efficiency Update
  • flexmls-idx/trunk/flexmls_connect.php

    r3169439 r3179036  
    66Description: Provides Flexmls&reg; Customers with Flexmls&reg; IDX features on their WordPress websites. <strong>Tips:</strong> <a href="admin.php?page=fmc_admin_settings">Activate your Flexmls&reg; IDX plugin</a> on the settings page; <a href="widgets.php">add widgets to your sidebar</a> using the Widgets Admin under Appearance; and include widgets on your posts or pages using the Flexmls&reg; IDX Widget Short-Code Generator on the Visual page editor.
    77Author: FBS
    8 Version: 3.14.23
     8Version: 3.14.24
    99Author URI:  https://www.flexmls.com
    1010Requires at least: 5.0
     
    1717const FMC_API_BASE = 'sparkapi.com';
    1818const FMC_API_VERSION = 'v1';
    19 const FMC_PLUGIN_VERSION = '3.14.23';
     19const FMC_PLUGIN_VERSION = '3.14.24';
    2020
    2121define( 'FMC_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
  • flexmls-idx/trunk/lib/flexmlsAPI/Core.php

    r3169439 r3179036  
    4444        'Accept-Encoding' => "gzip,deflate",
    4545        'Content-Type' => "application/json",
    46         'User-Agent' => "FlexMLS WordPress Plugin/3.14.23",
    47         'X-SparkApi-User-Agent' => "flexmls-WordPress-Plugin/3.14.23"
     46        'User-Agent' => "FlexMLS WordPress Plugin/3.14.24",
     47        'X-SparkApi-User-Agent' => "flexmls-WordPress-Plugin/3.14.24"
    4848    );
    4949
  • flexmls-idx/trunk/lib/oauth-api.php

    r2926110 r3179036  
    368368            if( array_key_exists( 'D', $json ) ){
    369369                if( true == $json[ 'D' ][ 'Success' ] && 'GET' == strtoupper( $method ) && $service != 'oauth2/grant' ){
    370                     set_transient( 'flexmls_query_' . $request[ 'transient_name' ], $json, $seconds_to_cache );
     370                    //set_transient( 'flexmls_query_' . $request[ 'transient_name' ], $json, $seconds_to_cache );
    371371                } elseif( isset( $json[ 'D' ][ 'Code' ] ) && 1020 == $json[ 'D' ][ 'Code' ] ){
    372372                    delete_transient( 'flexmls_auth_token' );
Note: See TracChangeset for help on using the changeset viewer.