Changeset 2889980
- Timestamp:
- 03/30/2023 08:58:33 AM (3 years ago)
- Location:
- bablic/trunk
- Files:
-
- 2 edited
-
Bablic.php (modified) (2 diffs)
-
sdk.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bablic/trunk/Bablic.php
r2404522 r2889980 24 24 Plugin URI: https://www.bablic.com/docs#wordpress' 25 25 Description: Integrates your site with Bablic localization cloud service. 26 Version: 2. 926 Version: 2.10 27 27 Author: Ishai Jaffe 28 28 Author URI: https://www.bablic.com … … 41 41 var $bablic_version = '3.9'; 42 42 var $query_var = 'bablic_locale'; 43 var $bablic_plugin_version = '2. 9.0';43 var $bablic_plugin_version = '2.10.0'; 44 44 var $bablic_data_file; 45 45 -
bablic/trunk/sdk.php
r2404522 r2889980 209 209 'timeout' => '30', 210 210 'redirection' => '5', 211 'httpversion' => '1. 0',211 'httpversion' => '1.1', 212 212 'blocking' => true, 213 'headers' => array("Content-type: application/json","X-HTTP-Method-Override:PUT","Expect:"), 213 'headers' => array( 214 "Content-type" => "application/json", 215 "X-HTTP-Method-Override" => "PUT", 216 "Expect" => "" 217 ), 214 218 'cookies' => array() 215 219 ); … … 236 240 'timeout' => '30', 237 241 'redirection' => '5', 238 'httpversion' => '1. 0',242 'httpversion' => '1.1', 239 243 'blocking' => true, 240 'headers' => array("Content-type: application/json","Expect:"), 244 'headers' => array( 245 "Content-type" => "application/json", 246 "Expect" => "" 247 ), 241 248 'cookies' => array() 242 249 ); … … 732 739 'timeout' => '30', 733 740 'redirection' => '5', 734 'httpversion' => '1. 0',741 'httpversion' => '1.1', 735 742 'blocking' => true, 736 'headers' => array("Content-type: text/html", "Content-Length:".$length,"Expect:"), 743 'headers' => array( 744 "Content-type" => "text/html", 745 "Content-Length" => $length, 746 "Expect" => "" 747 ), 737 748 'cookies' => array() 738 749 );
Note: See TracChangeset
for help on using the changeset viewer.