Plugin Directory

Changeset 1503440


Ignore:
Timestamp:
09/27/2016 09:38:26 AM (9 years ago)
Author:
piotrmocko
Message:

Version 1.4.11

Location:
perfectdashboard/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • perfectdashboard/trunk/class/perfectdashboard-upgrade-class.php

    r1499590 r1503440  
    11<?php
    22/**
    3  * @version 1.4.10
     3 * @version 1.4.11
    44 * @package Perfect Dashboard
    55 * @copyright © 2016 Perfect Web sp. z o.o., All rights reserved. http://www.perfect-web.co
     
    7575            return (object)array('success' => 0, 'message' => 'invalid_package');
    7676
    77         if (empty(get_option('perfectdashboard-sslverify', 1))) {
     77        $ssl_verify = get_option('perfectdashboard-sslverify', 1);
     78        if (empty($ssl_verify)) {
    7879            add_filter('http_request_args', array($this, 'http_request_args'), 10, 2);
    7980        }
     
    501502        $response = array('success' => 1);
    502503
    503         if (empty(get_option('perfectdashboard-sslverify', 1))) {
     504        $ssl_verify = get_option('perfectdashboard-sslverify', 1);
     505        if (empty($ssl_verify)) {
    504506            add_filter('http_request_args', array($this, 'http_request_args'), 10, 2);
    505507        }
     
    524526        $response = array('success' => 1);
    525527
    526         if (empty(get_option('perfectdashboard-sslverify', 1))) {
     528        $ssl_verify = get_option('perfectdashboard-sslverify', 1);
     529        if (empty($ssl_verify)) {
    527530            add_filter('http_request_args', array($this, 'http_request_args'), 10, 2);
    528531        }
     
    547550        $response = array('success' => 1);
    548551
    549         if (empty(get_option('perfectdashboard-sslverify', 1))) {
     552        $ssl_verify = get_option('perfectdashboard-sslverify', 1);
     553        if (empty($ssl_verify)) {
    550554            add_filter('http_request_args', array($this, 'http_request_args'), 10, 2);
    551555        }
  • perfectdashboard/trunk/perfectdashboard.php

    r1499590 r1503440  
    44 * Plugin URI: https://perfectdashboard.co/?utm_source=backend&utm_medium=installer&utm_campaign=WP
    55 * Description:
    6  * Version: 1.4.10
     6 * Version: 1.4.11
    77 * Text Domain: perfectdashboard
    88 * Author: Perfect-Web
  • perfectdashboard/trunk/readme.txt

    r1499590 r1503440  
    55Requires at least: 3.5.0
    66Tested up to: 4.6.1
    7 Stable tag: 1.4.10
     7Stable tag: 1.4.11
    88License: GNU/GPL
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    8888== Changelog ==
    8989
     90= 1.4.11 / 27-09-2016 =
     91
     92* fix error
     93
    9094= 1.4.10 / 21-09-2016 =
    9195
Note: See TracChangeset for help on using the changeset viewer.