Plugin Directory

Changeset 1890178


Ignore:
Timestamp:
06/09/2018 02:01:33 PM (8 years ago)
Author:
griffinjt
Message:

Updating to v1.4.2 to fix a PHP error with < 5.6.

Location:
optinmonster
Files:
61 added
3 edited

Legend:

Unmodified
Added
Removed
  • optinmonster/trunk/OMAPI/Api.php

    r1889783 r1890178  
    1717     * @var string
    1818     */
    19     public $base = OPTINMONSTER_APP_URL . '/v1/';
     19    public $base = OPTINMONSTER_APP_API_URL;
    2020
    2121    /**
  • optinmonster/trunk/optin-monster-wp-api.php

    r1889783 r1890178  
    66 * Author:      OptinMonster Team
    77 * Author URI:  https://optinmonster.com
    8  * Version:     1.4.1
     8 * Version:     1.4.2
    99 * Text Domain: optin-monster-api
    1010 * Domain Path: languages
     
    6161     * @var string
    6262     */
    63     public $version = '1.4.1';
     63    public $version = '1.4.2';
    6464
    6565    /**
     
    149149        if ( ! defined( 'OPTINMONSTER_APP_URL' ) ) {
    150150            define( 'OPTINMONSTER_APP_URL', 'https://app.optinmonster.com' );
     151        }
     152
     153        if ( ! defined( 'OPTINMONSTER_APP_API_URL' ) ) {
     154            define( 'OPTINMONSTER_APP_API_URL', 'https://app.optinmonster.com/v1/' );
    151155        }
    152156
  • optinmonster/trunk/readme.txt

    r1889783 r1890178  
    55Tested up to: 4.9.6
    66Requires PHP: 5.3
    7 Stable tag: 1.4.0
     7Stable tag: 1.4.2
    88License: GNU General Public License v2.0 or later
    99
     
    161161== Changelog ==
    162162
     163= 1.4.2 =
     164* Fixed a bug that caused issues with PHP versions under 5.6.
     165
    163166= 1.4.1 =
    164167* Include a file that was missing in 1.4.0. Sorry!
Note: See TracChangeset for help on using the changeset viewer.