Plugin Directory

Changeset 2917966


Ignore:
Timestamp:
05/27/2023 12:27:12 AM (3 years ago)
Author:
SimplyRETS
Message:

v2.10.1

Location:
simply-rets
Files:
3 edited
10 copied

Legend:

Unmodified
Added
Removed
  • simply-rets/tags/2.10.1/readme.txt

    r2910862 r2917966  
    55Requires at least: 3.0.1
    66Tested up to: 6.1
    7 Stable tag: 2.10.0
     7Stable tag: 2.10.1
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    237237
    238238== Changelog ==
     239
     240= 2.10.1 =
     241* FIX: Remove trailing commas to support older PHP versions
    239242
    240243= 2.10.0 =
  • simply-rets/tags/2.10.1/simply-rets-api-helper.php

    r2910862 r2917966  
    125125        $site_url = get_site_url();
    126126
    127         $ua_string     = "SimplyRETSWP/2.10.0 Wordpress/{$wp_version} PHP/{$php_version}";
     127        $ua_string     = "SimplyRETSWP/2.10.1 Wordpress/{$wp_version} PHP/{$php_version}";
    128128        $accept_header = "Accept: application/json; q=0.2, application/vnd.simplyrets-v0.1+json";
    129129
     
    223223        }
    224224
    225 
    226         // foreach( $options as $key => $option ) {
    227         //     if( !$option == NULL ) {
    228         //         update_option( 'sr_adv_search_option_' . $key, $option );
    229         //     } else {
    230         //         echo '';
    231         //     }
    232         // }
    233 
    234225        return;
    235 
    236226    }
    237227
     
    246236        $php_version = phpversion();
    247237
    248         $ua_string     = "SimplyRETSWP/2.10.0 Wordpress/{$wp_version} PHP/{$php_version}";
     238        $ua_string     = "SimplyRETSWP/2.10.1 Wordpress/{$wp_version} PHP/{$php_version}";
    249239        $accept_header = "Accept: application/json; q=0.2, application/vnd.simplyrets-v0.1+json";
    250240
     
    1003993            if($lh_id) {
    1004994                $lh_send_details = SimplyRetsApiHelper::srListhubSendDetails(
    1005                       $lh_id
    1006                     , $lh_test
    1007                     , $listing_mlsid
    1008                     , $listing_postal_code
     995                    $lh_id,
     996                    $lh_test,
     997                    $listing_mlsid,
     998                    $listing_postal_code
    1009999                );
    10101000
     
    11321122            $agent_email,
    11331123            $listing_office_phone,
    1134             $listing_office_email,
     1124            $listing_office_email
    11351125        )));
    11361126
     
    11381128            $listing_agent_name,
    11391129            $listing_office,
    1140             $listing_by_contact,
     1130            $listing_by_contact
    11411131        );
    11421132
  • simply-rets/tags/2.10.1/simply-rets.php

    r2910862 r2917966  
    55Description: Show your Real Estate listings on your Wordpress site. SimplyRETS provides a very simple set up and full control over your listings.
    66Author: SimplyRETS
    7 Version: 2.10.0
     7Version: 2.10.1
    88License: GNU General Public License v3 or later
    99
  • simply-rets/trunk/readme.txt

    r2910862 r2917966  
    55Requires at least: 3.0.1
    66Tested up to: 6.1
    7 Stable tag: 2.10.0
     7Stable tag: 2.10.1
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    237237
    238238== Changelog ==
     239
     240= 2.10.1 =
     241* FIX: Remove trailing commas to support older PHP versions
    239242
    240243= 2.10.0 =
  • simply-rets/trunk/simply-rets-api-helper.php

    r2910862 r2917966  
    125125        $site_url = get_site_url();
    126126
    127         $ua_string     = "SimplyRETSWP/2.10.0 Wordpress/{$wp_version} PHP/{$php_version}";
     127        $ua_string     = "SimplyRETSWP/2.10.1 Wordpress/{$wp_version} PHP/{$php_version}";
    128128        $accept_header = "Accept: application/json; q=0.2, application/vnd.simplyrets-v0.1+json";
    129129
     
    223223        }
    224224
    225 
    226         // foreach( $options as $key => $option ) {
    227         //     if( !$option == NULL ) {
    228         //         update_option( 'sr_adv_search_option_' . $key, $option );
    229         //     } else {
    230         //         echo '';
    231         //     }
    232         // }
    233 
    234225        return;
    235 
    236226    }
    237227
     
    246236        $php_version = phpversion();
    247237
    248         $ua_string     = "SimplyRETSWP/2.10.0 Wordpress/{$wp_version} PHP/{$php_version}";
     238        $ua_string     = "SimplyRETSWP/2.10.1 Wordpress/{$wp_version} PHP/{$php_version}";
    249239        $accept_header = "Accept: application/json; q=0.2, application/vnd.simplyrets-v0.1+json";
    250240
     
    1003993            if($lh_id) {
    1004994                $lh_send_details = SimplyRetsApiHelper::srListhubSendDetails(
    1005                       $lh_id
    1006                     , $lh_test
    1007                     , $listing_mlsid
    1008                     , $listing_postal_code
     995                    $lh_id,
     996                    $lh_test,
     997                    $listing_mlsid,
     998                    $listing_postal_code
    1009999                );
    10101000
     
    11321122            $agent_email,
    11331123            $listing_office_phone,
    1134             $listing_office_email,
     1124            $listing_office_email
    11351125        )));
    11361126
     
    11381128            $listing_agent_name,
    11391129            $listing_office,
    1140             $listing_by_contact,
     1130            $listing_by_contact
    11411131        );
    11421132
  • simply-rets/trunk/simply-rets.php

    r2910862 r2917966  
    55Description: Show your Real Estate listings on your Wordpress site. SimplyRETS provides a very simple set up and full control over your listings.
    66Author: SimplyRETS
    7 Version: 2.10.0
     7Version: 2.10.1
    88License: GNU General Public License v3 or later
    99
Note: See TracChangeset for help on using the changeset viewer.