Changeset 2770240
- Timestamp:
- 08/14/2022 06:21:43 AM (4 years ago)
- Location:
- wprequal/trunk
- Files:
-
- 3 edited
-
includes/abstracts/trait.Api.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
wprequal.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wprequal/trunk/includes/abstracts/trait.Api.php
r2770218 r2770240 131 131 132 132 return array( 133 'timeout' => 5,133 'timeout' => WPREQUAL_REQUEST_TIMEOUT, 134 134 'sslverify' => WPREQUAL_SSL_VERIFY, 135 135 'headers' => array( -
wprequal/trunk/readme.txt
r2770218 r2770240 164 164 == Change Log == 165 165 166 = 7.12.1 = 167 * Imporvement - Define constant for API request timeout 168 166 169 = 7.12.0 = 167 170 * Improvement - Add free access token support -
wprequal/trunk/wprequal.php
r2770218 r2770240 4 4 Plugin URI: https://wprequal.com 5 5 Description: Mortgage and Real Estate Lead Capture System 6 Version: 7.12. 06 Version: 7.12.1 7 7 Author: WPrequal 8 8 Author URI: https://wprequal.com … … 44 44 45 45 $constants = array( 46 'WPREQUAL_VERSION' => '7.12. 0',46 'WPREQUAL_VERSION' => '7.12.1', 47 47 'WPREQOAL_PLUGIN' => plugin_basename( __FILE__ ), 48 48 'WPREQUAL_OPTIONS' => 'wprequal_options', … … 57 57 'WPREQUAL_API_URL' => 'https://api.wprequal.com/wp-json/wprequal-api/v3/', 58 58 'WPREQUAL_ERROR_LOG_DIR' => trailingslashit( $uploads['basedir'] ) . 'wprequal-logs/', 59 'WPREQUAL_SSL_VERIFY' => TRUE 59 'WPREQUAL_SSL_VERIFY' => TRUE, 60 'WPREQUAL_REQUEST_TIMEOUT' => 60 60 61 ); 61 62
Note: See TracChangeset
for help on using the changeset viewer.