Version 1.4.2: Improved plugin descriptions for better clarity

This commit is contained in:
2025-04-11 00:19:13 +01:00
parent 8562c311c5
commit 93bfb33bf4

View File

@ -9,8 +9,8 @@
* *
* @wordpress-plugin * @wordpress-plugin
* Plugin Name: Fix 'Plugin file does not exist.' Notices * Plugin Name: Fix 'Plugin file does not exist.' Notices
* Description: Adds missing plugins to the plugins list with a "Remove Reference" link so you can clean up invalid plugin entries. * Description: Adds missing plugins to the plugins list with a "Remove Reference" link so you can permanently clean up invalid plugin entries and remove error notices.
* Version: 1.4.1 * Version: 1.4.2
* Author: Marcus Quinn * Author: Marcus Quinn
* Author URI: https://www.wpallstars.com * Author URI: https://www.wpallstars.com
* License: GPL-2.0+ * License: GPL-2.0+
@ -72,7 +72,7 @@ class Fix_Plugin_Does_Not_Exist_Notices {
$plugin_name = basename($plugin_path); $plugin_name = basename($plugin_path);
$plugins[$plugin_path] = array( $plugins[$plugin_path] = array(
'Name' => $plugin_name . ' <span class="error">(File Missing)</span>', 'Name' => $plugin_name . ' <span class="error">(File Missing)</span>',
'Description' => 'This plugin file does not exist. You can safely remove this reference.', 'Description' => 'This plugin is still marked as "Active" in your database — but its folder and files can\'t be found in /wp-content/plugins/. Click "Remove Reference" to permanently remove it from your active plugins list and eliminate the error notice.',
'Version' => 'N/A', 'Version' => 'N/A',
'Author' => '', 'Author' => '',
'PluginURI' => '', 'PluginURI' => '',