Changeset 1144
- Timestamp:
- 04/07/06 11:30:45 (3 years ago)
- Files:
-
- trunk/lib/response/sfWebResponse.class.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/response/sfWebResponse.class.php
r1143 r1144 358 358 if (!$doNotEscape) 359 359 { 360 $value = htmlentities($value, ENT_QUOTES );360 $value = htmlentities($value, ENT_QUOTES, 'UTF-8'); 361 361 } 362 362 … … 376 376 if (!$doNotEscape) 377 377 { 378 $title = htmlentities($title, ENT_QUOTES );378 $title = htmlentities($title, ENT_QUOTES, 'UTF-8'); 379 379 } 380 380