Changeset 3179036
- Timestamp:
- 10/30/2024 05:54:10 PM (16 months ago)
- Location:
- flexmls-idx/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (2 diffs)
-
flexmls_connect.php (modified) (2 diffs)
-
lib/flexmlsAPI/Core.php (modified) (1 diff)
-
lib/oauth-api.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
flexmls-idx/trunk/README.txt
r3169439 r3179036 5 5 Tested up to: 6.7 6 6 Requires PHP: 7.4 7 Stable tag: 3.14.2 37 Stable tag: 3.14.24 8 8 9 9 Add Flexmls® IDX listings, market statistics, IDX searches, and a contact form on your web site. … … 86 86 87 87 == Changelog == 88 = 3.14.24 = 89 Efficiency Update 90 * Fixed Log-In Widget Caching Issue 91 88 92 = 3.14.23 = 89 93 Efficiency Update -
flexmls-idx/trunk/flexmls_connect.php
r3169439 r3179036 6 6 Description: Provides Flexmls® Customers with Flexmls® IDX features on their WordPress websites. <strong>Tips:</strong> <a href="admin.php?page=fmc_admin_settings">Activate your Flexmls® 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® IDX Widget Short-Code Generator on the Visual page editor. 7 7 Author: FBS 8 Version: 3.14.2 38 Version: 3.14.24 9 9 Author URI: https://www.flexmls.com 10 10 Requires at least: 5.0 … … 17 17 const FMC_API_BASE = 'sparkapi.com'; 18 18 const FMC_API_VERSION = 'v1'; 19 const FMC_PLUGIN_VERSION = '3.14.2 3';19 const FMC_PLUGIN_VERSION = '3.14.24'; 20 20 21 21 define( 'FMC_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); -
flexmls-idx/trunk/lib/flexmlsAPI/Core.php
r3169439 r3179036 44 44 'Accept-Encoding' => "gzip,deflate", 45 45 'Content-Type' => "application/json", 46 'User-Agent' => "FlexMLS WordPress Plugin/3.14.2 3",47 'X-SparkApi-User-Agent' => "flexmls-WordPress-Plugin/3.14.2 3"46 'User-Agent' => "FlexMLS WordPress Plugin/3.14.24", 47 'X-SparkApi-User-Agent' => "flexmls-WordPress-Plugin/3.14.24" 48 48 ); 49 49 -
flexmls-idx/trunk/lib/oauth-api.php
r2926110 r3179036 368 368 if( array_key_exists( 'D', $json ) ){ 369 369 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 ); 371 371 } elseif( isset( $json[ 'D' ][ 'Code' ] ) && 1020 == $json[ 'D' ][ 'Code' ] ){ 372 372 delete_transient( 'flexmls_auth_token' );
Note: See TracChangeset
for help on using the changeset viewer.