Plugin Directory

Changeset 2185797


Ignore:
Timestamp:
11/04/2019 08:14:47 PM (6 years ago)
Author:
wpdashboard
Message:

tagging version 2.0.10

Location:
wp-dashboard
Files:
3 edited
6 copied

Legend:

Unmodified
Added
Removed
  • wp-dashboard/tags/2.0.10/includes/class-wpdashboard-updates.php

    r2185796 r2185797  
    3232    public static function send() {
    3333       
    34         require_once(ABSPATH . 'wp-admin/includes/update.php');
     34        if(!function_exists('get_theme_updates')) {
     35            require_once(ABSPATH . 'wp-admin/includes/update.php');
     36        }
    3537       
    3638        $client = new WP_Http();
  • wp-dashboard/tags/2.0.10/readme.txt

    r2184034 r2185797  
    66Tested up to: 5.2.4
    77Requires PHP: 5.6
    8 Stable tag: 2.0.8
     8Stable tag: 2.0.10
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5656
    5757== Changelog ==
     58
     59= 2.0.10 =
     60* Fixed bug where we missed including the update.php file causing some errors
    5861
    5962= 2.0.9 =
  • wp-dashboard/tags/2.0.10/wpdashboard.php

    r2184034 r2185797  
    1717 * Plugin URI:        https://wpdashboard.io
    1818 * Description:       Manage your Wordpress installations in one place.
    19  * Version:           2.0.8
     19 * Version:           2.0.10
    2020 * Author:            WP Dashboard
    2121 * Author URI:        https://wpdashboard.io
     
    3131}
    3232
    33 define( 'WP_DASHBOARD_VERSION', '2.0.8' );
     33define( 'WP_DASHBOARD_VERSION', '2.0.10' );
    3434define( 'WP_DASHBOARD_PLUGIN_DIRECTORY', plugin_dir_path( __DIR__ ) );
    3535
  • wp-dashboard/trunk/includes/class-wpdashboard-updates.php

    r2185796 r2185797  
    3232    public static function send() {
    3333       
    34         require_once(ABSPATH . 'wp-admin/includes/update.php');
     34        if(!function_exists('get_theme_updates')) {
     35            require_once(ABSPATH . 'wp-admin/includes/update.php');
     36        }
    3537       
    3638        $client = new WP_Http();
  • wp-dashboard/trunk/readme.txt

    r2184034 r2185797  
    66Tested up to: 5.2.4
    77Requires PHP: 5.6
    8 Stable tag: 2.0.8
     8Stable tag: 2.0.10
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5656
    5757== Changelog ==
     58
     59= 2.0.10 =
     60* Fixed bug where we missed including the update.php file causing some errors
    5861
    5962= 2.0.9 =
  • wp-dashboard/trunk/wpdashboard.php

    r2184034 r2185797  
    1717 * Plugin URI:        https://wpdashboard.io
    1818 * Description:       Manage your Wordpress installations in one place.
    19  * Version:           2.0.8
     19 * Version:           2.0.10
    2020 * Author:            WP Dashboard
    2121 * Author URI:        https://wpdashboard.io
     
    3131}
    3232
    33 define( 'WP_DASHBOARD_VERSION', '2.0.8' );
     33define( 'WP_DASHBOARD_VERSION', '2.0.10' );
    3434define( 'WP_DASHBOARD_PLUGIN_DIRECTORY', plugin_dir_path( __DIR__ ) );
    3535
Note: See TracChangeset for help on using the changeset viewer.