Changeset 3051451
- Timestamp:
- 03/15/2024 05:29:51 AM (21 months ago)
- Location:
- wp-file-manager/trunk
- Files:
-
- 2 edited
-
file_folder_manager.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-file-manager/trunk/file_folder_manager.php
r3042608 r3051451 5 5 Description: Manage your WP files. 6 6 Author: mndpsingh287 7 Version: 7.2. 47 Version: 7.2.5 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. 4';19 var $ver = '7.2.5'; 20 20 /* Auto Load Hooks */ 21 21 public function __construct() … … 1003 1003 'nonce' => $fm_nonce, 1004 1004 'plugin_url' => plugins_url('lib/', __FILE__), 1005 'lang' => isset($_GET['lang']) ? sanitize_text_field(htmlentities($_GET['lang'])) : (($wp_fm_lang !== false) ? $wp_fm_lang : 'en'),1005 'lang' => isset($_GET['lang']) && in_array(sanitize_text_field(htmlentities($_GET['lang'])), $this->fm_languages()) ? sanitize_text_field(htmlentities($_GET['lang'])) : (($wp_fm_lang !== false) ? $wp_fm_lang : 'en'), 1006 1006 'fm_enable_media_upload' => (isset($opt['fm_enable_media_upload']) && $opt['fm_enable_media_upload'] == '1') ? '1' : '0', 1007 1007 'is_multisite'=> is_multisite() ? '1' : '0', -
wp-file-manager/trunk/readme.txt
r3042608 r3051451 5 5 Tested up to: 6.4.3 6 6 Requires PHP: 5.2.4 7 Stable tag: 7.2. 47 Stable tag: 7.2.5 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.5 (14 Mar, 2024) = 143 * Improved Language check. 144 142 145 = 7.2.4 (28 Feb, 2024) = 143 146 * Fixed Language issue.
Note: See TracChangeset
for help on using the changeset viewer.