Home » Images » Image_Canvas » Bug #9176
UTF-8 in SVGs does not work (patch included)
Details
| Submitted | 2006-10-27 07:42 UTC |
|---|---|
| From | stivick at gmail dot com |
| Assigned | nosey |
| Status | Closed |
| Package | Image_Canvas |
| PHP Version | 4.4.2 |
| OS | all |
| Roadmaps | (Not assigned) |
Comments
[2006-10-27 07:42 UTC] stivick at gmail dot com
Description:
------------
Request #7285 UTF-8 in SVGs
This feature does not work.
Try creating new canvas with encoding set, other than default. In the header of SVG there stil be deafult encoding (ISO-8859-1).
Test script:
---------------
#112 SVG.php:
if (isset($params['encoding'])) {
$this->_encoding = $params['encoding'];
Should be $param instead of $params:
if (isset($param['encoding'])) {
$this->_encoding = $param['encoding'];