Plugin Directory

Changeset 3081478


Ignore:
Timestamp:
05/05/2024 11:09:42 AM (23 months ago)
Author:
modalweb
Message:

V 5.2.4

Location:
file-manager-advanced/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • file-manager-advanced/trunk/application/library/php/elFinderVolumeDriver.class.php

    r3058403 r3081478  
    22652265            return $this->setError(elFinder::ERROR_PERM_DENIED);
    22662266        }
    2267         if (substr($name, 0, 1) === '/' || substr($name, 0, 1) === '\\') {
    2268             return $this->setError(elFinder::ERROR_INVALID_DIRNAME);
    2269         }
     2267        // if (substr($name, 0, 1) === '/' || substr($name, 0, 1) === '\\') {
     2268        //     return $this->setError(elFinder::ERROR_INVALID_DIRNAME);
     2269        // }
    22702270
    22712271        $dst = $this->joinPathCE($path, $name);
     
    23042304            return $this->setError(elFinder::ERROR_INVALID_NAME);
    23052305        }
    2306         if (substr($name, 0, 1) === '/' || substr($name, 0, 1) === '\\') {
    2307             return $this->setError(elFinder::ERROR_INVALID_DIRNAME);
    2308         }
     2306        // if (substr($name, 0, 1) === '/' || substr($name, 0, 1) === '\\') {
     2307        //     return $this->setError(elFinder::ERROR_INVALID_DIRNAME);
     2308        // }
    23092309
    23102310        $mimeByName = $this->mimetype($name, true);
     
    34823482            $custom_temp_path = WP_CONTENT_DIR.'/temp';
    34833483            if (!is_dir($custom_temp_path)) {
    3484                 mkdir($custom_temp_path, 0777, true);
     3484                mkdir($custom_temp_path, 0755, true);
    34853485            }
    34863486            return $custom_temp_path;
  • file-manager-advanced/trunk/constants.php

    r3058403 r3081478  
    55 */
    66if ( !defined('FMA_VERSION') ) {
    7    define('FMA_VERSION', '5.2.3');
     7   define('FMA_VERSION', '5.2.4');
    88}
    99/**
  • file-manager-advanced/trunk/file_manager_advanced.php

    r3058403 r3081478  
    55  Description: Cpanel for files management in wordpress
    66  Author: modalweb
    7   Version: 5.2.3
     7  Version: 5.2.4
    88  Author URI: https://advancedfilemanager.com
    99  License: GPLv2
  • file-manager-advanced/trunk/readme.txt

    r3058403 r3081478  
    33Tags: file manager, wordpress file manager, wp file manager, file manager pro, document management,file-manager, wp-filemanager, elfinder, wp-file-manager, ftp, filemanager
    44Requires at least: 4.0
    5 Tested up to: 6.4.3
     5Tested up to: 6.5.2
    66Requires PHP: 7.0
    7 Stable tag: 5.2.3
     7Stable tag: 5.2.4
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    113113== Changelog ==
    114114
     115= 5.2.4 (5th May, 2024) =
     116* Minor Fixes
     117* Compatible with 6.5.2
     118
    115119= 5.2.3 (25th Mar, 2024) =
    116120
Note: See TracChangeset for help on using the changeset viewer.