Plugin Directory

Changeset 1717043


Ignore:
Timestamp:
08/21/2017 01:46:07 PM (9 years ago)
Author:
freediver
Message:

version 4.2.22

Location:
worker/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • worker/trunk/init.php

    r1707105 r1717043  
    44Plugin URI: https://managewp.com
    55Description: We help you efficiently manage all your WordPress websites. <strong>Updates, backups, 1-click login, migrations, security</strong> and more, on one dashboard. This service comes in two versions: standalone <a href="https://managewp.com">ManageWP</a> service that focuses on website management, and <a href="https://godaddy.com/pro">GoDaddy Pro</a> that includes additional tools for hosting, client management, lead generation, and more.
    6 Version: 4.2.21
     6Version: 4.2.22
    77Author: ManageWP
    88Author URI: https://managewp.com
     
    564564        register_activation_hook(__FILE__, 'mwp_activation_hook');
    565565
    566         $GLOBALS['MMB_WORKER_VERSION']  = '4.2.21';
    567         $GLOBALS['MMB_WORKER_REVISION'] = '2017-08-02 00:00:00';
     566        $GLOBALS['MMB_WORKER_VERSION']  = '4.2.22';
     567        $GLOBALS['MMB_WORKER_REVISION'] = '2017-08-21 00:00:00';
    568568
    569569        // Ensure PHP version compatibility.
  • worker/trunk/readme.txt

    r1707105 r1717043  
    5353
    5454== Changelog ==
     55
     56= 4.2.22 =
     57
     58- Fix: Detecting real upload path when using symbolic links.
    5559
    5660= 4.2.21 =
  • worker/trunk/src/MMB/Core.php

    r1707105 r1717043  
    238238}
    239239
    240 if ((file_exists(untrailingslashit(WP_PLUGIN_DIR).'/$pluginBasename')) ||
     240if (file_exists(untrailingslashit(WP_PLUGIN_DIR).'/$pluginBasename')) {
     241    if (in_array('$pluginBasename', (array) get_option('active_plugins')) ||
    241242        (function_exists('get_site_option') && array_key_exists('worker/init.php', (array) get_site_option('active_sitewide_plugins')))) {
    242     if (in_array('$pluginBasename', (array) get_option('active_plugins'))) {
    243243        \$GLOBALS['mwp_is_mu'] = true;
    244244        include_once untrailingslashit(WP_PLUGIN_DIR).'/$pluginBasename';
  • worker/trunk/src/MMB/Stats.php

    r1707105 r1717043  
    541541
    542542        $uploadDirArray                 = wp_upload_dir();
    543         $stats['uploads_relative_path'] = $fs->makePathRelative($uploadDirArray['basedir'], ABSPATH);
     543        if (false === $uploadDir = realpath($uploadDirArray['basedir'])) {
     544            $uploadDir = $uploadDirArray['basedir'];
     545        }
     546
     547        $stats['uploads_relative_path'] = $fs->makePathRelative($uploadDir, ABSPATH);
    544548
    545549        $stats['writable']  = $this->is_server_writable();
  • worker/trunk/version

    r1707105 r1717043  
    1 4.2.21
    2 2017-08-02 00:00:00
     14.2.22
     22017-08-21 00:00:00
Note: See TracChangeset for help on using the changeset viewer.