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 /views/failsafe | |
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 'views/failsafe')
-rw-r--r-- | views/failsafe/messages/exceptions/exception.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/failsafe/messages/exceptions/exception.php b/views/failsafe/messages/exceptions/exception.php index 61c4a8937..5b637ad95 100644 --- a/views/failsafe/messages/exceptions/exception.php +++ b/views/failsafe/messages/exceptions/exception.php @@ -32,7 +32,7 @@ <p class="messages-exception-detail" style="background:#FDFFC3;display:block;padding:10px;"> <?php - echo autop(htmlentities(print_r($vars['object'], true))); + echo autop(htmlentities(print_r($vars['object'], true), null, 'UTF-8')); ?> </p> |