Skip to content

Commit

Permalink
Fixing #5494 - Typo in settings.php
Browse files Browse the repository at this point in the history
typo error in name used in inserts array for selective_plugin_debug
  • Loading branch information
TheWitness committed Sep 23, 2023
1 parent c4c9537 commit f24f2de
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 @@ -94,6 +94,7 @@ Cacti CHANGELOG
-issue#5483: cacti 1.2.25 ubuntu server 22.04.3 php8.1 add device error
-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

1.2.25
-security#GHSA-77rf-774j-6h3p: Protect against Insecure deserialization of filter data
Expand Down
2 changes: 1 addition & 1 deletion settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@
}

if (!isset_request_var('selective_plugin_debug')) {
$inserts[] = '("selective_debug_plugin", "")';
$inserts[] = '("selective_plugin_debug", "")';
db_execute('REPLACE INTO settings
(name, value)
VALUES ("selective_plugin_debug", "")');
Expand Down

0 comments on commit f24f2de

Please sign in to comment.