Plugin Directory

Changeset 2770240


Ignore:
Timestamp:
08/14/2022 06:21:43 AM (4 years ago)
Author:
wprequal
Message:

Commit v7.12.1

Location:
wprequal/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wprequal/trunk/includes/abstracts/trait.Api.php

    r2770218 r2770240  
    131131
    132132        return array(
    133             'timeout'   => 5,
     133            'timeout'   => WPREQUAL_REQUEST_TIMEOUT,
    134134            'sslverify' => WPREQUAL_SSL_VERIFY,
    135135            'headers'   => array(
  • wprequal/trunk/readme.txt

    r2770218 r2770240  
    164164== Change Log ==
    165165
     166= 7.12.1 =
     167* Imporvement - Define constant for API request timeout
     168
    166169= 7.12.0 =
    167170* Improvement - Add free access token support
  • wprequal/trunk/wprequal.php

    r2770218 r2770240  
    44Plugin URI:  https://wprequal.com
    55Description: Mortgage and Real Estate Lead Capture System
    6 Version:     7.12.0
     6Version:     7.12.1
    77Author:      WPrequal
    88Author URI:  https://wprequal.com
     
    4444
    4545$constants = array(
    46     'WPREQUAL_VERSION'            => '7.12.0',
     46    'WPREQUAL_VERSION'            => '7.12.1',
    4747    'WPREQOAL_PLUGIN'             => plugin_basename( __FILE__ ),
    4848    'WPREQUAL_OPTIONS'            => 'wprequal_options',
     
    5757    'WPREQUAL_API_URL'            => 'https://api.wprequal.com/wp-json/wprequal-api/v3/',
    5858    'WPREQUAL_ERROR_LOG_DIR'      => trailingslashit( $uploads['basedir'] ) . 'wprequal-logs/',
    59     'WPREQUAL_SSL_VERIFY'         => TRUE
     59    'WPREQUAL_SSL_VERIFY'         => TRUE,
     60    'WPREQUAL_REQUEST_TIMEOUT'    => 60
    6061);
    6162
Note: See TracChangeset for help on using the changeset viewer.