diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-08 16:14:17 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-08 16:14:17 +0000 |
commit | a8d4042f8268212104a094f1a1fd229fc219818b (patch) | |
tree | 206e92f56c3cb8a4a9bb429ec701aeb5d4db2e4c /mod/profile | |
parent | b8870eaa1b40de4862745728097ca942e6070946 (diff) | |
download | elgg-a8d4042f8268212104a094f1a1fd229fc219818b.tar.gz elgg-a8d4042f8268212104a094f1a1fd229fc219818b.tar.bz2 |
Remaining htmlentities calls converted to utf-8
git-svn-id: https://code.elgg.org/elgg/trunk@1805 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile')
-rw-r--r-- | mod/profile/views/default/profile/icon.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/profile/views/default/profile/icon.php b/mod/profile/views/default/profile/icon.php index 25597101c..8424f4c3f 100644 --- a/mod/profile/views/default/profile/icon.php +++ b/mod/profile/views/default/profile/icon.php @@ -19,7 +19,7 @@ if ($vars['entity'] instanceof ElggUser) {
- $name = htmlentities($vars['entity']->name);
+ $name = htmlentities($vars['entity']->name, null, 'UTF-8');
$username = $vars['entity']->username;
if ($icontime = $vars['entity']->icontime) {
|