From 7d86263fd48306547abe0330f029ff34ad0761da Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Wed, 19 Apr 2006 01:59:24 +0000 Subject: [PATCH] Change " to " when running generate_css_output() --- printer_css.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/printer_css.php b/printer_css.php index 4f614f1..41e0462 100644 --- a/printer_css.php +++ b/printer_css.php @@ -605,7 +605,7 @@ class Printer_CSS { if ($name != 'extra' AND $value != '') { - $output .= "\n\t$name: $value;"; + $output .= str_replace('"', '"', "\n\t$name: $value;"); } } -- 2.22.5