Changeset 3471275
- Timestamp:
- 02/27/2026 05:40:34 PM (5 weeks ago)
- Location:
- mega-database-cleanup
- Files:
-
- 6 added
- 2 edited
-
tags/1.1.1 (added)
-
tags/1.1.1/assets (added)
-
tags/1.1.1/assets/admin.js (added)
-
tags/1.1.1/assets/style.css (added)
-
tags/1.1.1/mega-db-cleanup.php (added)
-
tags/1.1.1/readme.txt (added)
-
trunk/mega-db-cleanup.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mega-database-cleanup/trunk/mega-db-cleanup.php
r3469640 r3471275 3 3 * Plugin Name: Mega Database Cleanup 4 4 * Description: The ultimate WordPress database optimization suite. Clean ACF orphans, empty meta, and junk data with a modern UI. Features automated scheduling and safe backups for a lightning-fast site. 5 * Version: 1.1. 05 * Version: 1.1.1 6 6 * Author: MegaWix Technologies 7 7 * Author URI: https://megawix.com … … 251 251 plugin_dir_url(__FILE__) . 'assets/style.css', 252 252 array(), 253 '1.1. 0'253 '1.1.1' 254 254 ); 255 255 … … 259 259 plugin_dir_url(__FILE__) . 'assets/admin.js', 260 260 array('jquery'), 261 '1.1. 0',261 '1.1.1', 262 262 true 263 263 ); … … 1006 1006 $first_safe_id = $rows[0]->meta_id; 1007 1007 1008 $meta_ids = array_map(f n($r) => $r->meta_id, $rows);1008 $meta_ids = array_map(function($r){ return $r->meta_id; }, $rows); 1009 1009 $latest5_safe = array_slice($meta_ids, -5); 1010 1010 -
mega-database-cleanup/trunk/readme.txt
r3469640 r3471275 6 6 Tested up to: 6.9.1 7 7 Requires PHP: 7.4 8 Stable tag: 1.1. 08 Stable tag: 1.1.1 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 156 156 157 157 == Changelog == 158 159 = 1.1.1 = 160 * Fixed: Critical PHP compatibility issue by replacing modern arrow functions with traditional anonymous functions, ensuring support for older server environments. 161 * Fixed: Resolved a glitch that caused plugin deactivation during the update process due to script execution timeouts on some servers. 162 * Improved: Better handling of plugin state during version transitions. 158 163 159 164 = 1.1.0 = … … 178 183 == Upgrade Notice == 179 184 185 = 1.1.1 = 186 Critical hotfix that improves PHP compatibility and fixes a bug where the plugin would deactivate itself after an update. Recommended for all users. 187 180 188 = 1.1.0 = 181 189 Adds optional activation email popup, deactivation feedback popup, top-level sidebar menu, and admin bar link.
Note: See TracChangeset
for help on using the changeset viewer.