Changeset 2753056
- Timestamp:
- 07/07/2022 12:02:04 PM (3 years ago)
- Location:
- wp-file-manager/trunk
- Files:
-
- 3 edited
-
file_folder_manager.php (modified) (3 diffs)
-
inc/root.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-file-manager/trunk/file_folder_manager.php
r2711494 r2753056 5 5 Description: Manage your WP files. 6 6 Author: mndpsingh287 7 Version: 7.1. 57 Version: 7.1.6 8 8 Author URI: https://profiles.wordpress.org/mndpsingh287 9 9 License: GPLv2 … … 16 16 class mk_file_folder_manager 17 17 { 18 protected $SERVER = 'http ://ikon.digital/plugindata/api.php';19 var $ver = '7.1. 5';18 protected $SERVER = 'https://www.tru.agency/api/plugindata/api.php'; 19 var $ver = '7.1.6'; 20 20 /* Auto Load Hooks */ 21 21 public function __construct() … … 77 77 $myfileHandle = @fopen($myfile, 'w+'); 78 78 if(!is_bool($myfileHandle)){ 79 $txt = '<FilesMatch "\.(zip|gz)$">';79 $txt = '<FilesMatch "\.(zip|gz)$">'; 80 80 $txt .= "\nOrder allow,deny\n"; 81 81 $txt .= "Deny from all\n"; -
wp-file-manager/trunk/inc/root.php
r2711494 r2753056 16 16 17 17 $prev_value = get_option('wp_file_manager_settings',true); 18 $packet_value = i ntval($prev_value['fm_max_packet_allowed']);18 $packet_value = isset($prev_value['fm_max_packet_allowed']) ? intval($prev_value['fm_max_packet_allowed']) : 0; 19 19 $save_array['fm_max_packet_allowed'] = $packet_value; 20 20 $packet_value = intval($packet_value * 1000000); -
wp-file-manager/trunk/readme.txt
r2711494 r2753056 3 3 Tags: wp-file-manager, elfinder,file manager, ftp, wp-filemanager,file manager, wp-filemanager, Upload Files, WP File Manager, File Manage, Edit Files, Delete Files, FTP, filemanager, wpfilemanager, ftp, file transfer, update, create, delete, view, rename, editor, Cpanel, Control Panel, Admin, Shortcode, explorer, file explorer, filemanager 4 4 Requires at least: 4.0 5 Tested up to: 5.9.35 Tested up to: 6.0 6 6 Requires PHP: 5.2.4 7 Stable tag: 7.1. 57 Stable tag: 7.1.6 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 139 139 == Changelog == 140 140 141 142 = 7.1.6 (28th June, 2022) = 143 144 * Checked compatibility with wordpress 5.8.2 145 * Updated APIs 146 141 147 = 7.1.5 (19th Apr, 2022) = 142 148
Note: See TracChangeset
for help on using the changeset viewer.