From 769b7701b8b360f4e5fc7bc93de8677b60810265 Mon Sep 17 00:00:00 2001 From: Tom Laermans Date: Wed, 9 Jun 2010 10:23:47 +0000 Subject: [PATCH] backslash fix since new rrdtool usage git-svn-id: http://www.observium.org/svn/observer/trunk@1109 61d68cd4-352d-0410-923a-c4978735b2b8 --- html/includes/graphs/generic_duplex.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/html/includes/graphs/generic_duplex.inc.php b/html/includes/graphs/generic_duplex.inc.php index 991085070..5d92a7d0d 100644 --- a/html/includes/graphs/generic_duplex.inc.php +++ b/html/includes/graphs/generic_duplex.inc.php @@ -39,7 +39,7 @@ if($percentile) { $rrd_options .= " ".$percentile."th %"; } $rrd_options .= "\\n'"; -$rrd_options .= " LINE1.25:in#".$colour_line_in.":In\ "; +$rrd_options .= " LINE1.25:in#".$colour_line_in.":'In '"; $rrd_options .= " GPRINT:in:LAST:%6.2lf%s"; $rrd_options .= " GPRINT:in:AVERAGE:%6.2lf%s"; $rrd_options .= " GPRINT:in_max:MAX:%6.2lf%s"; @@ -57,7 +57,7 @@ if($percentile) { } $rrd_options .= " COMMENT:\\\\n"; if($print_total) { - $rrd_options .= " GPRINT:tot:'Total\ %6.2lf%s'"; + $rrd_options .= " GPRINT:tot:'Total %6.2lf%s'"; $rrd_options .= " GPRINT:totin:'(In %6.2lf%s'"; $rrd_options .= " GPRINT:totout:'Out %6.2lf%s)\\\\l'"; }