Plugin Directory

Changeset 3382294


Ignore:
Timestamp:
10/22/2025 04:50:58 AM (8 weeks ago)
Author:
ninjateam
Message:

Version 6.5.1

Location:
filebird
Files:
203 added
1 deleted
7 edited

Legend:

Unmodified
Added
Removed
  • filebird/trunk/assets/dist/manifest.json

    r3379856 r3382294  
    1212  },
    1313  "main.tsx": {
    14     "file": "main.tsx-531e35dc.js",
     14    "file": "main.tsx-0cb57172.js",
    1515    "imports": [
    1616      "_ProBadge-273f2167.js"
  • filebird/trunk/filebird.php

    r3379856 r3382294  
    44 * Plugin URI: https://ninjateam.org/wordpress-media-library-folders/
    55 * Description: Organize thousands of WordPress media files into folders/ categories at ease.
    6  * Version: 6.5.0
     6 * Version: 6.5.1
    77 * Author: Ninja Team
    88 * Author URI: https://ninjateam.org
     
    3333
    3434if ( ! defined( 'NJFB_VERSION' ) ) {
    35     define( 'NJFB_VERSION', '6.5.0' );
     35    define( 'NJFB_VERSION', '6.5.1' );
    3636}
    3737
  • filebird/trunk/includes/Classes/Core.php

    r3379856 r3382294  
    9595    public function ajax_first_folder_notice() {
    9696        check_ajax_referer( 'fbv_nonce', 'nonce', true );
     97        if ( ! current_user_can( 'manage_options' ) ) {
     98            wp_send_json_error(
     99                array( 'mess' => __( 'You do not have permission to perform this action.', 'filebird' ) ),
     100                403
     101            );
     102        }
    97103        update_option( 'fbv_first_folder_notice', time() + 30 * 60 * 60 * 24 ); //After 3 months show
    98104        wp_send_json_success();
  • filebird/trunk/includes/Classes/Review.php

    r3092894 r3382294  
    3030
    3131    public function fbv_save_review() {
     32        if ( ! current_user_can( 'manage_options' ) ) {
     33            wp_send_json_error(
     34                array( 'mess' => __( 'You do not have permission to perform this action.', 'filebird' ) ),
     35                403
     36            );
     37        }
     38       
    3239        if ( count( $_REQUEST ) ) {
    3340            $nonce = $this->hasField( 'nonce', $_REQUEST );
  • filebird/trunk/includes/Support/WPML.php

    r3258363 r3382294  
    5151
    5252        check_ajax_referer( 'fbv_nonce', 'nonce', true );
    53 
     53        if ( ! current_user_can( 'manage_options' ) ) {
     54            wp_send_json_error(
     55                array( 'mess' => __( 'You do not have permission to perform this action.', 'filebird' ) ),
     56                403
     57            );
     58        }
    5459        $translationNotInFolder = $wpdb->get_results(
    5560            "SELECT GROUP_CONCAT( IF(fbv.folder_id is NULL, icl.element_id, NULL) ) as attachment_ids, GROUP_CONCAT(DISTINCT(fbv.folder_id)) as folder_id
  • filebird/trunk/readme.txt

    r3379860 r3382294  
    55Requires at least: 3.0
    66Tested up to: 6.8
    7 Stable tag: 6.5.0
     7Stable tag: 6.5.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    209209
    210210== Changelog ==
     211
     212= Oct 22, 2025 - Version 6.5.1 =
     213- Improved: Security (Access Control Authenticated (Subscriber+))
     214- Fixed: Inputs were not working properly
    211215
    212216= Oct 17, 2025 – Version 6.5.0 =
  • filebird/trunk/vendor/composer/installed.php

    r3379856 r3382294  
    44        'pretty_version' => 'dev-main',
    55        'version' => 'dev-main',
    6         'reference' => 'c27bc4793344bfb05b84bc74884a80023b33c542',
     6        'reference' => 'c100cd2b07f3b7217b4bce183b800a385bee2c8f',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    2323            'pretty_version' => 'dev-main',
    2424            'version' => 'dev-main',
    25             'reference' => 'c27bc4793344bfb05b84bc74884a80023b33c542',
     25            'reference' => 'c100cd2b07f3b7217b4bce183b800a385bee2c8f',
    2626            'type' => 'library',
    2727            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.