Plugin Directory

Changeset 3042608


Ignore:
Timestamp:
02/28/2024 01:29:44 PM (22 months ago)
Author:
mndpsingh287
Message:

v7.2.4

Location:
wp-file-manager/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-file-manager/trunk/file_folder_manager.php

    r3042343 r3042608  
    55  Description: Manage your WP files.
    66  Author: mndpsingh287
    7   Version: 7.2.3
     7  Version: 7.2.4
    88  Author URI: https://profiles.wordpress.org/mndpsingh287
    99  License: GPLv2
     
    1717    {
    1818        protected $SERVER = 'https://searchpro.ai/api/plugindata/api.php';
    19         var $ver = '7.2.3';
     19        var $ver = '7.2.4';
    2020        /* Auto Load Hooks */
    2121        public function __construct()
     
    845845                'wp_file_manager',
    846846            );
    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
    854849            $lang = isset($_GET['lang']) && !empty($_GET['lang']) && in_array(sanitize_text_field(htmlentities($_GET['lang'])), $this->fm_languages()) ? sanitize_text_field(htmlentities($_GET['lang'])) : '';
    855850            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 {
    856854                global $wp_version;
    857855                $fm_nonce = wp_create_nonce('wp-file-manager');
     
    10251023                     wp_enqueue_style('theme-latest', plugins_url('lib/themes/'.$wp_fm_theme.'/css/theme.css', __FILE__), '', $this->ver);
    10261024                 }
    1027              } else {
    1028              }
     1025             } else {}
     1026             
     1027            }
    10291028             endif;
    10301029             
  • wp-file-manager/trunk/readme.txt

    r3042343 r3042608  
    55Tested up to: 6.4.3
    66Requires PHP: 5.2.4
    7 Stable tag: 7.2.3
     7Stable tag: 7.2.4
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    140140== Changelog ==
    141141
    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) =
    143146* Fixed Language issue.
    144147
Note: See TracChangeset for help on using the changeset viewer.