Plugin Directory

Changeset 1283245


Ignore:
Timestamp:
11/10/2015 12:14:59 PM (10 years ago)
Author:
ConsidS5
Message:

Fixed issue with syntax error in src/Santander/i18n/Message.php

Location:
easycontract
Files:
1 added
3 edited
8 copied

Legend:

Unmodified
Added
Removed
  • easycontract/tags/1.0.2wo/readme.txt

    r1279523 r1283245  
    44Requires at least: 4.0
    55Tested up to: 4.3.1
    6 Stable tag: 1.0.1wo
     6Stable tag: 1.0.2wo
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    1919* cURL lib must be enabled for PHP ([http://php.net/manual/en/book.curl.php](http://php.net/manual/en/book.curl.php))
    2020* libxml [http://php.net/manual/en/book.libxml.php](http://php.net/manual/en/book.libxml.php)
     21
     22== Changelog ==
     23= 1.0.2wo =
     24* Fix: syntax error in src/Santander/i18n/Message.php.
     25
     26= 1.0.1wo =
     27* Fix: the logger is trying to chmod log directory if not writeable.
     28
     29= 1.0.0wo =
     30* First stable release
    2131
    2232== Installation ==
  • easycontract/trunk/ext/santander/src/Santander.php

    r1279385 r1283245  
    4747   
    4848    public static function version() {
    49         return '1.0.0';
     49        return '1.0.1';
    5050    }
    5151   
  • easycontract/trunk/ext/santander/src/Santander/i18n/Message.php

    r1279385 r1283245  
    3939       
    4040        if (empty($sourceMessages)) {
    41             $sourceMessages = (new Language($language->getDefaultLanguage()))->getMessages();
     41            $sourceLanguageObject = new Language($language->getDefaultLanguage());
     42            $sourceMessages = $sourceLanguageObject->getMessages();
    4243        }
    4344       
  • easycontract/trunk/readme.txt

    r1279523 r1283245  
    44Requires at least: 4.0
    55Tested up to: 4.3.1
    6 Stable tag: 1.0.1wo
     6Stable tag: 1.0.2wo
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    1919* cURL lib must be enabled for PHP ([http://php.net/manual/en/book.curl.php](http://php.net/manual/en/book.curl.php))
    2020* libxml [http://php.net/manual/en/book.libxml.php](http://php.net/manual/en/book.libxml.php)
     21
     22== Changelog ==
     23= 1.0.2wo =
     24* Fix: syntax error in src/Santander/i18n/Message.php.
     25
     26= 1.0.1wo =
     27* Fix: the logger is trying to chmod log directory if not writeable.
     28
     29= 1.0.0wo =
     30* First stable release
    2131
    2232== Installation ==
Note: See TracChangeset for help on using the changeset viewer.