Changeset 1503440
- Timestamp:
- 09/27/2016 09:38:26 AM (9 years ago)
- Location:
- perfectdashboard/trunk
- Files:
-
- 3 edited
-
class/perfectdashboard-upgrade-class.php (modified) (5 diffs)
-
perfectdashboard.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
perfectdashboard/trunk/class/perfectdashboard-upgrade-class.php
r1499590 r1503440 1 1 <?php 2 2 /** 3 * @version 1.4.1 03 * @version 1.4.11 4 4 * @package Perfect Dashboard 5 5 * @copyright © 2016 Perfect Web sp. z o.o., All rights reserved. http://www.perfect-web.co … … 75 75 return (object)array('success' => 0, 'message' => 'invalid_package'); 76 76 77 if (empty(get_option('perfectdashboard-sslverify', 1))) { 77 $ssl_verify = get_option('perfectdashboard-sslverify', 1); 78 if (empty($ssl_verify)) { 78 79 add_filter('http_request_args', array($this, 'http_request_args'), 10, 2); 79 80 } … … 501 502 $response = array('success' => 1); 502 503 503 if (empty(get_option('perfectdashboard-sslverify', 1))) { 504 $ssl_verify = get_option('perfectdashboard-sslverify', 1); 505 if (empty($ssl_verify)) { 504 506 add_filter('http_request_args', array($this, 'http_request_args'), 10, 2); 505 507 } … … 524 526 $response = array('success' => 1); 525 527 526 if (empty(get_option('perfectdashboard-sslverify', 1))) { 528 $ssl_verify = get_option('perfectdashboard-sslverify', 1); 529 if (empty($ssl_verify)) { 527 530 add_filter('http_request_args', array($this, 'http_request_args'), 10, 2); 528 531 } … … 547 550 $response = array('success' => 1); 548 551 549 if (empty(get_option('perfectdashboard-sslverify', 1))) { 552 $ssl_verify = get_option('perfectdashboard-sslverify', 1); 553 if (empty($ssl_verify)) { 550 554 add_filter('http_request_args', array($this, 'http_request_args'), 10, 2); 551 555 } -
perfectdashboard/trunk/perfectdashboard.php
r1499590 r1503440 4 4 * Plugin URI: https://perfectdashboard.co/?utm_source=backend&utm_medium=installer&utm_campaign=WP 5 5 * Description: 6 * Version: 1.4.1 06 * Version: 1.4.11 7 7 * Text Domain: perfectdashboard 8 8 * Author: Perfect-Web -
perfectdashboard/trunk/readme.txt
r1499590 r1503440 5 5 Requires at least: 3.5.0 6 6 Tested up to: 4.6.1 7 Stable tag: 1.4.1 07 Stable tag: 1.4.11 8 8 License: GNU/GPL 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 88 88 == Changelog == 89 89 90 = 1.4.11 / 27-09-2016 = 91 92 * fix error 93 90 94 = 1.4.10 / 21-09-2016 = 91 95
Note: See TracChangeset
for help on using the changeset viewer.