Plugin Directory

Changeset 2889980


Ignore:
Timestamp:
03/30/2023 08:58:33 AM (3 years ago)
Author:
ishaijaffe
Message:

2.10

Location:
bablic/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • bablic/trunk/Bablic.php

    r2404522 r2889980  
    2424Plugin URI: https://www.bablic.com/docs#wordpress'
    2525Description: Integrates your site with Bablic localization cloud service.
    26 Version: 2.9
     26Version: 2.10
    2727Author: Ishai Jaffe
    2828Author URI: https://www.bablic.com
     
    4141    var $bablic_version = '3.9';
    4242    var $query_var = 'bablic_locale';
    43     var $bablic_plugin_version = '2.9.0';
     43    var $bablic_plugin_version = '2.10.0';
    4444    var $bablic_data_file;
    4545
  • bablic/trunk/sdk.php

    r2404522 r2889980  
    209209            'timeout' => '30',
    210210            'redirection' => '5',
    211             'httpversion' => '1.0',
     211            'httpversion' => '1.1',
    212212            '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            ),
    214218            'cookies' => array()
    215219        );
     
    236240            'timeout' => '30',
    237241            'redirection' => '5',
    238             'httpversion' => '1.0',
     242            'httpversion' => '1.1',
    239243            'blocking' => true,
    240             'headers' => array("Content-type: application/json","Expect:"),
     244            'headers' => array(
     245                "Content-type" => "application/json",
     246                "Expect" => ""
     247            ),
    241248            'cookies' => array()
    242249        );
     
    732739            'timeout' => '30',
    733740            'redirection' => '5',
    734             'httpversion' => '1.0',
     741            'httpversion' => '1.1',
    735742            '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            ),
    737748            'cookies' => array()
    738749        );
Note: See TracChangeset for help on using the changeset viewer.