Changeset 1717043
- Timestamp:
- 08/21/2017 01:46:07 PM (9 years ago)
- Location:
- worker/trunk
- Files:
-
- 5 edited
-
init.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
src/MMB/Core.php (modified) (1 diff)
-
src/MMB/Stats.php (modified) (1 diff)
-
version (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
worker/trunk/init.php
r1707105 r1717043 4 4 Plugin URI: https://managewp.com 5 5 Description: 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.2 16 Version: 4.2.22 7 7 Author: ManageWP 8 8 Author URI: https://managewp.com … … 564 564 register_activation_hook(__FILE__, 'mwp_activation_hook'); 565 565 566 $GLOBALS['MMB_WORKER_VERSION'] = '4.2.2 1';567 $GLOBALS['MMB_WORKER_REVISION'] = '2017-08- 0200:00:00';566 $GLOBALS['MMB_WORKER_VERSION'] = '4.2.22'; 567 $GLOBALS['MMB_WORKER_REVISION'] = '2017-08-21 00:00:00'; 568 568 569 569 // Ensure PHP version compatibility. -
worker/trunk/readme.txt
r1707105 r1717043 53 53 54 54 == Changelog == 55 56 = 4.2.22 = 57 58 - Fix: Detecting real upload path when using symbolic links. 55 59 56 60 = 4.2.21 = -
worker/trunk/src/MMB/Core.php
r1707105 r1717043 238 238 } 239 239 240 if ((file_exists(untrailingslashit(WP_PLUGIN_DIR).'/$pluginBasename')) || 240 if (file_exists(untrailingslashit(WP_PLUGIN_DIR).'/$pluginBasename')) { 241 if (in_array('$pluginBasename', (array) get_option('active_plugins')) || 241 242 (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'))) {243 243 \$GLOBALS['mwp_is_mu'] = true; 244 244 include_once untrailingslashit(WP_PLUGIN_DIR).'/$pluginBasename'; -
worker/trunk/src/MMB/Stats.php
r1707105 r1717043 541 541 542 542 $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); 544 548 545 549 $stats['writable'] = $this->is_server_writable(); -
worker/trunk/version
r1707105 r1717043 1 4.2.2 12 2017-08- 0200:00:001 4.2.22 2 2017-08-21 00:00:00
Note: See TracChangeset
for help on using the changeset viewer.