Plugin Directory

Changeset 1542066


Ignore:
Timestamp:
11/28/2016 03:17:22 PM (9 years ago)
Author:
piotrmocko
Message:

Version 1.4.14

Location:
perfectdashboard/trunk
Files:
3 edited

Legend:

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

    r1535106 r1542066  
    11<?php
    22/**
    3  * @version 1.4.10
     3 * @version 1.4.14
    44 * @package Perfect Dashboard
    55 * @copyright © 2016 Perfect Web sp. z o.o., All rights reserved. http://www.perfect-web.co
     
    522522        if (!empty($plugins->response)) {
    523523            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                }
    524531                if (!empty($plugin->new_version)) {
    525532
     
    554561        if (!empty($themes->response)) {
    555562            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                }
    556570                if (!empty($theme->new_version)) {
    557571
  • perfectdashboard/trunk/perfectdashboard.php

    r1539701 r1542066  
    22/**
    33 * Plugin Name: Perfect Dashboard
    4  * Plugin URI: https://perfectdashboard.co/?utm_source=backend&utm_medium=installer&utm_campaign=WP
     4 * Plugin URI: https://perfectdashboard.com/?utm_source=backend&utm_medium=installer&utm_campaign=WP
    55 * Description:
    6  * Version: 1.4.13
     6 * Version: 1.4.14
    77 * Text Domain: perfectdashboard
    8  * Author: Perfect-Web
    9  * Author URI: https://perfectdashboard.co/?utm_source=backend&utm_medium=installer&utm_campaign=WP
     8 * Author: Perfect Dashboard
     9 * Author URI: https://perfectdashboard.com/?utm_source=backend&utm_medium=installer&utm_campaign=WP
    1010 * License: GNU/GPL http://www.gnu.org/licenses/gpl-3.0.html
    1111 */
  • perfectdashboard/trunk/readme.txt

    r1539701 r1542066  
    11=== Perfect Dashboard ===
    2 Contributors: perfect-web, piotrmocko, aleksanderkuczek
     2Contributors: perfectdashboard, piotrmocko, aleksanderkuczek
    33Donate link:
    44Tags: wordpress, website, management, manager, wp, backup, update, upgrade, test, tool, wp-admin, visual comparision, automatic, automatization, administration
    55Requires at least: 3.5.0
    66Tested up to: 4.6.1
    7 Stable tag: 1.4.13
     7Stable tag: 1.4.14
    88License: GNU/GPL
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    8888== Changelog ==
    8989
     90= 1.4.14 / 28-11-2016
     91
     92* improve commercail updates
     93
    9094= 1.4.11 / 27-09-2016 =
    9195
Note: See TracChangeset for help on using the changeset viewer.