diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2006-12-07 14:49:48 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2006-12-07 14:49:48 +0000 |
commit | 56b2051319c9fda9b4e78e6d3ccd3bfe22326b16 (patch) | |
tree | d0a1dd0758f3c12a0c586d5312de2a9b4405a4bd | |
parent | 10d2b024859787aad075161d62f60d8a02d054a2 (diff) | |
download | zetacomponents-graph-56b2051319c9fda9b4e78e6d3ccd3bfe22326b16.zip zetacomponents-graph-56b2051319c9fda9b4e78e6d3ccd3bfe22326b16.tar.gz |
- Fixed comment
-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 ); } } |