Changeset 1542066
- Timestamp:
- 11/28/2016 03:17:22 PM (9 years ago)
- Location:
- perfectdashboard/trunk
- Files:
-
- 3 edited
-
class/perfectdashboard-class.php (modified) (3 diffs)
-
perfectdashboard.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
perfectdashboard/trunk/class/perfectdashboard-class.php
r1535106 r1542066 1 1 <?php 2 2 /** 3 * @version 1.4.1 03 * @version 1.4.14 4 4 * @package Perfect Dashboard 5 5 * @copyright © 2016 Perfect Web sp. z o.o., All rights reserved. http://www.perfect-web.co … … 522 522 if (!empty($plugins->response)) { 523 523 foreach ($plugins->response as $slug => $plugin) { 524 if (!is_object($plugin)) { 525 if (is_array($plugin)) { 526 $plugin = (object) $plugin; 527 } else { 528 continue; 529 } 530 } 524 531 if (!empty($plugin->new_version)) { 525 532 … … 554 561 if (!empty($themes->response)) { 555 562 foreach ($themes->response as $slug => $theme) { 563 if (!is_object($theme)) { 564 if (is_array($theme)) { 565 $theme = (object) $theme; 566 } else { 567 continue; 568 } 569 } 556 570 if (!empty($theme->new_version)) { 557 571 -
perfectdashboard/trunk/perfectdashboard.php
r1539701 r1542066 2 2 /** 3 3 * Plugin Name: Perfect Dashboard 4 * Plugin URI: https://perfectdashboard.co /?utm_source=backend&utm_medium=installer&utm_campaign=WP4 * Plugin URI: https://perfectdashboard.com/?utm_source=backend&utm_medium=installer&utm_campaign=WP 5 5 * Description: 6 * Version: 1.4.1 36 * Version: 1.4.14 7 7 * Text Domain: perfectdashboard 8 * Author: Perfect -Web9 * Author URI: https://perfectdashboard.co /?utm_source=backend&utm_medium=installer&utm_campaign=WP8 * Author: Perfect Dashboard 9 * Author URI: https://perfectdashboard.com/?utm_source=backend&utm_medium=installer&utm_campaign=WP 10 10 * License: GNU/GPL http://www.gnu.org/licenses/gpl-3.0.html 11 11 */ -
perfectdashboard/trunk/readme.txt
r1539701 r1542066 1 1 === Perfect Dashboard === 2 Contributors: perfect -web, piotrmocko, aleksanderkuczek2 Contributors: perfectdashboard, piotrmocko, aleksanderkuczek 3 3 Donate link: 4 4 Tags: wordpress, website, management, manager, wp, backup, update, upgrade, test, tool, wp-admin, visual comparision, automatic, automatization, administration 5 5 Requires at least: 3.5.0 6 6 Tested up to: 4.6.1 7 Stable tag: 1.4.1 37 Stable tag: 1.4.14 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.14 / 28-11-2016 91 92 * improve commercail updates 93 90 94 = 1.4.11 / 27-09-2016 = 91 95
Note: See TracChangeset
for help on using the changeset viewer.