diff options
Diffstat (limited to 'views/default/output/text.php')
| -rw-r--r-- | views/default/output/text.php | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/views/default/output/text.php b/views/default/output/text.php index bcfe33ea0..5cbfc35b0 100644 --- a/views/default/output/text.php +++ b/views/default/output/text.php @@ -5,11 +5,8 @@ * * @package Elgg * @subpackage Core - * @author Curverider Ltd - * @link http://elgg.org/ - * - * @uses $vars['text'] The text to display * + * @uses $vars['value'] The text to display */ -echo htmlentities($vars['value'], ENT_QUOTES, 'UTF-8'); // $vars['value'];
\ No newline at end of file +echo htmlspecialchars($vars['value'], ENT_QUOTES, 'UTF-8', false);
\ No newline at end of file |
