Changeset 3042608
- Timestamp:
- 02/28/2024 01:29:44 PM (22 months ago)
- Location:
- wp-file-manager/trunk
- Files:
-
- 2 edited
-
file_folder_manager.php (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-file-manager/trunk/file_folder_manager.php
r3042343 r3042608 5 5 Description: Manage your WP files. 6 6 Author: mndpsingh287 7 Version: 7.2. 37 Version: 7.2.4 8 8 Author URI: https://profiles.wordpress.org/mndpsingh287 9 9 License: GPLv2 … … 17 17 { 18 18 protected $SERVER = 'https://searchpro.ai/api/plugindata/api.php'; 19 var $ver = '7.2. 3';19 var $ver = '7.2.4'; 20 20 /* Auto Load Hooks */ 21 21 public function __construct() … … 845 845 'wp_file_manager', 846 846 ); 847 848 // Check nonce 849 if( isset( $_GET['lang'] ) && !empty( $_GET['lang'] ) && !wp_verify_nonce( isset( $_GET['nonce'] ) ? $_GET['nonce'] : '', 'wp-file-manager-language' )){ 850 die('Access Denied.'); 851 } 852 853 // Languages 847 848 // Languages 854 849 $lang = isset($_GET['lang']) && !empty($_GET['lang']) && in_array(sanitize_text_field(htmlentities($_GET['lang'])), $this->fm_languages()) ? sanitize_text_field(htmlentities($_GET['lang'])) : ''; 855 850 if (!empty($getPage) && in_array($getPage, $allowedPages)): 851 if( isset( $_GET['lang'] ) && !empty( $_GET['lang'] ) && !wp_verify_nonce( isset( $_GET['nonce'] ) ? $_GET['nonce'] : '', 'wp-file-manager-language' )) { 852 //Access Denied 853 } else { 856 854 global $wp_version; 857 855 $fm_nonce = wp_create_nonce('wp-file-manager'); … … 1025 1023 wp_enqueue_style('theme-latest', plugins_url('lib/themes/'.$wp_fm_theme.'/css/theme.css', __FILE__), '', $this->ver); 1026 1024 } 1027 } else { 1028 } 1025 } else {} 1026 1027 } 1029 1028 endif; 1030 1029 -
wp-file-manager/trunk/readme.txt
r3042343 r3042608 5 5 Tested up to: 6.4.3 6 6 Requires PHP: 5.2.4 7 Stable tag: 7.2. 37 Stable tag: 7.2.4 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 140 140 == Changelog == 141 141 142 = 7.2.3 (27 Feb, 2024) = 142 = 7.2.4 (28 Feb, 2024) = 143 * Fixed Language issue. 144 145 = 7.2.3 (26 Feb, 2024) = 143 146 * Fixed Language issue. 144 147
Note: See TracChangeset
for help on using the changeset viewer.