Skip to content

Commit

Permalink
fix php variable in rrd command (#5708)
Browse files Browse the repository at this point in the history
  • Loading branch information
xmacan committed Mar 27, 2024
1 parent 53e8014 commit d23b568
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/rrd.php
Original file line number Diff line number Diff line change
Expand Up @@ -2738,7 +2738,7 @@ function rrdtool_function_theme_font_options(&$graph_data_array) {
}

if (isset($$themeborder) && cacti_version_compare($rrdversion,'1.4','>=')) {
$graph_opts .= "--border $$themeborder ";
$graph_opts .= "--border " . $$themeborder . RRD_NL;
}

if (isset($rrdfonts)) {
Expand Down

0 comments on commit d23b568

Please sign in to comment.