Changeset 3281235
- Timestamp:
- 04/24/2025 07:20:00 PM (8 months ago)
- Location:
- media-library-downloader/trunk
- Files:
-
- 3 edited
-
includes/class-main.php (modified) (1 diff)
-
media-library-downloader.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
media-library-downloader/trunk/includes/class-main.php
r2796173 r3281235 45 45 46 46 // Prevent non authorized user to make action 47 if ( !is_user_logged_in() && !is_admin() ) : 48 return; 47 if ( !current_user_can('upload_files') ) : 48 wp_send_json_error('Unauthorized access', 403); 49 wp_die(); 49 50 endif; 50 51 -
media-library-downloader/trunk/media-library-downloader.php
r3226210 r3281235 4 4 * Plugin URI: https://wordpress.org/plugins/media-library-downloader/ 5 5 * Description: Download multiple media library files in one click ! 6 * Version: 1.3. 16 * Version: 1.3.2 7 7 * Tags: library, media, files, download, downloader, WordPress 8 8 * Requires at least: 5.0 or higher 9 9 * Requires PHP: 5.6 10 10 * Tested up to: 6.6.1 11 * Stable tag: 1.3. 111 * Stable tag: 1.3.2 12 12 * Author: M . Code 13 13 * License: GPL v2 or later -
media-library-downloader/trunk/readme.txt
r3141339 r3281235 29 29 == Changelog == 30 30 31 = 1.3.2 = 32 * Fix vulnerabilities regarding access control 33 31 34 = 1.3.1 = 32 35 * Fix bug where download button where disabled
Note: See TracChangeset
for help on using the changeset viewer.