Plugin Directory

Changeset 1805655


Ignore:
Timestamp:
01/19/2018 10:03:04 AM (8 years ago)
Author:
itamarg
Message:
  • tag 1.2.9
  • Fixed issue on declaring PHP arrays to cater lower PHP versions.
Location:
sr-partner/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • sr-partner/trunk/includes/class-sr-partner-helper.php

    r1751613 r1805655  
    77 * @since      1.0.0
    88 * @package    SR_Partner
    9  * @subpackage SR_Partner/includes 
     9 * @subpackage SR_Partner/includes
    1010 */
    1111class SR_Partner_Helper {
     
    134134        $response = wp_remote_post(
    135135            $params['url'],
    136             [
     136            array (
    137137                'body'    => $params['post_string'],
    138138                'timeout' => SR_PARTNER_API_REQUEST_TIMEOUT,
    139             ]
     139            )
    140140        );
    141141
  • sr-partner/trunk/public/crawlers-list.php

    r1772779 r1805655  
    66|--------------------------------------------------------------------------
    77*/
    8 $config['crawlers'] = [
    9     "bots" =>  [
    10         "blocked" => [
     8$config['crawlers'] = array (
     9    "bots" =>  array (
     10        "blocked" => array (
    1111            "aboundexbot",
    1212            "adidxbot",
     
    170170            "yandex",
    171171            "zeus",
    172             ],
    173       ],
    174 ];
     172            ),
     173      ),
     174);
  • sr-partner/trunk/readme.txt

    r1772779 r1805655  
    33Tags: digital marketing agency, marketing, agency, seo, portfolio, lead tracking, seo audit, seo widget
    44Requires at least: 4.6
    5 Tested up to: 4.8.1
    6 Stable tag: 1.2.8
     5Tested up to: 4.9.2
     6Stable tag: 1.2.9
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4848
    4949== Changelog ==
     50
     51= 1.2.9 =
     52
     53* Release date: January 19, 2018
     54
     55**Bug fixes**
     56* Fixed issue on declaring PHP arrays to cater lower PHP versions.
    5057
    5158= 1.2.8 =
  • sr-partner/trunk/sr-partner.php

    r1772779 r1805655  
    1717 * Plugin URI:        https://www.seoreseller.com/
    1818 * Description:       SEOReseller's suite of tools for building, managing, and growing your digital marketing agency.
    19  * Version:           1.2.8
     19 * Version:           1.2.9
    2020 * Author:            SEOReseller Team
    2121 * Author URI:        https://www.seoreseller.com/
     
    4343defined('SR_PARTNER_PLUGIN_NAME') || define('SR_PARTNER_PLUGIN_NAME', 'sr-partner');
    4444
    45 defined('SR_PARTNER_VERSION') || define('SR_PARTNER_VERSION', '1.2.8');
     45defined('SR_PARTNER_VERSION') || define('SR_PARTNER_VERSION', '1.2.9');
    4646defined('SR_PARTNER_DEBUG')   || define('SR_PARTNER_DEBUG', false);
    4747
Note: See TracChangeset for help on using the changeset viewer.