diff options
-rw-r--r-- | src/driver/svg.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/driver/svg.php b/src/driver/svg.php index 4ce289d..151fd34 100644 --- a/src/driver/svg.php +++ b/src/driver/svg.php @@ -515,7 +515,7 @@ class ezcGraphSvgDriver extends ezcGraphDriver case 'utf-16': return $string; default: - // Manual escaping of ANSII characters, because ext/DOM fails here + // Manual escaping of non ANSII characters, because ext/DOM fails here return preg_replace( '/[\\x80-\\xFF]/e', 'sprintf( \'&#x%02x;\', ord( \'\\0\') )', $string ); } } |