diff --git a/lib/Cake/Utility/String.php b/lib/Cake/Utility/String.php index 2a8fb7293..f372d62e8 100644 --- a/lib/Cake/Utility/String.php +++ b/lib/Cake/Utility/String.php @@ -479,7 +479,7 @@ class String { if (isset($options['ending'])) { $default['ellipsis'] = $options['ending']; } elseif (!empty($options['html']) && Configure::read('App.encoding') == 'UTF-8') { - $default['ellipsis'] = chr(226); + $default['ellipsis'] = "\xE2\x80\xA6"; } $options = array_merge($default, $options); extract($options);