Changeset 3442601
- Timestamp:
- 01/19/2026 02:16:25 PM (2 months ago)
- Location:
- media-library-file-size
- Files:
-
- 10 added
- 2 edited
-
tags/1.6.8 (added)
-
tags/1.6.8/assets (added)
-
tags/1.6.8/assets/css (added)
-
tags/1.6.8/assets/css/media.css (added)
-
tags/1.6.8/assets/css/noty.css (added)
-
tags/1.6.8/assets/js (added)
-
tags/1.6.8/assets/js/media.js (added)
-
tags/1.6.8/assets/js/noty.js (added)
-
tags/1.6.8/readme.txt (added)
-
tags/1.6.8/ss88-media-library-file-size.php (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/ss88-media-library-file-size.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
media-library-file-size/trunk/readme.txt
r3342565 r3442601 4 4 Tags: file size, media library, image size, library size 5 5 Requires at least: 4.1 6 Tested up to: 6. 87 Stable tag: 1.6. 76 Tested up to: 6.9 7 Stable tag: 1.6.8 8 8 Requires PHP: 5.6 9 9 License: GPL2 … … 71 71 == Changelog == 72 72 73 = 1.6.8 = 74 * Tested up-to 6.9 75 * Administrator check for Indexes 76 73 77 = 1.6.7 = 74 78 * WordPress 'release' loop fix -
media-library-file-size/trunk/ss88-media-library-file-size.php
r3342565 r3442601 2 2 /* 3 3 Plugin Name: Media Library File Size 4 Plugin URI: https:// ss88.us/plugins/media-library-file-size?utm_source=wordpress&utm_medium=link&utm_campaign=mlfs4 Plugin URI: https://neoboffin.com/plugins/media-library-file-size?utm_source=wordpress&utm_medium=link&utm_campaign=mlfs 5 5 Description: Creates a new column in your Media Library to show you the file (and collective images) size of files plus more! 6 Version: 1.6. 77 Author: SS88LLC8 Author URI: https:// ss88.us/?utm_source=wordpress&utm_medium=link&utm_campaign=author_mlfs6 Version: 1.6.8 7 Author: Neoboffin LLC 8 Author URI: https://neoboffin.com/?utm_source=wordpress&utm_medium=link&utm_campaign=author_mlfs 9 9 Text Domain: media-library-file-size 10 License: GPL2 11 License URI: https://www.gnu.org/licenses/gpl-2.0.html 10 12 */ 11 13 14 if ( ! defined( 'ABSPATH' ) ) exit; 15 12 16 class SS88_MediaLibraryFileSize { 13 17 14 protected $version = '1.6. 7';18 protected $version = '1.6.8'; 15 19 protected $variantJSON = []; 16 20 … … 100 104 101 105 function index() { 106 107 if(!current_user_can('manage_options')) wp_send_json_error(['error' => 'You need to be an administrator.']); 102 108 103 109 set_time_limit(600); … … 190 196 function indexCount() { 191 197 198 if(!current_user_can('manage_options')) wp_send_json_error(['error' => 'You need to be an administrator.']); 199 192 200 global $wpdb; 193 201
Note: See TracChangeset
for help on using the changeset viewer.