Skip to content

Commit

Permalink
Fixing #5495 - Upgrade language inacurate
Browse files Browse the repository at this point in the history
Upon upgrade, cacti falsely assumes that a plugin is not compatible, when it could simply not be present
  • Loading branch information
TheWitness committed Sep 23, 2023
1 parent c00caf8 commit 30d7cc6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Cacti CHANGELOG
-issue#5489: remove_graphs.php does not handle "--preserve" option
-issue#5493: Multi select drop down list box not rendered correctly in Chrome and Edge
-issue#5494: typo error in name used in inserts array for selective_plugin_debug
-issue#5495: Upon upgrade, cacti falsely assumes that a plugin is not compatible, when it could simply not be present

1.2.25
-security#GHSA-77rf-774j-6h3p: Protect against Insecure deserialization of filter data
Expand Down
2 changes: 1 addition & 1 deletion lib/installer.php
Original file line number Diff line number Diff line change
Expand Up @@ -3586,7 +3586,7 @@ private static function disableInvalidPlugins() {
if ($integrated) {
cacti_log("Removing $plugin version $version as it is now integrated with Cacti " . CACTI_VERSION);
} else {
cacti_log("Disabling $plugin version $version as it is not compatible with Cacti " . CACTI_VERSION);
cacti_log("Disabling $plugin version $version as it is missing or not compatible with Cacti " . CACTI_VERSION);
}
api_plugin_disable_all($plugin);
}
Expand Down

0 comments on commit 30d7cc6

Please sign in to comment.