diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-03-01 15:42:33 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-03-01 15:42:33 +0000 |
commit | 544aaf2076330fe7121feec351036ac9911d3df9 (patch) | |
tree | 3f7fb1cf0b1fa2d595151510535c62bf6544b0fa /views/default/output | |
parent | 557e2dd6c6bcaabd7379f31c2c523ffd04b8adb7 (diff) | |
download | elgg-544aaf2076330fe7121feec351036ac9911d3df9.tar.gz elgg-544aaf2076330fe7121feec351036ac9911d3df9.tar.bz2 |
Closes #828: Quite correct - rather tired - arrays are individually trimmed - non-arrays are not.
Closes #714: Input filtering now triggers on a plugin hook, this allows plugins to provide other filtering methods than kses (Refs #561).
git-svn-id: https://code.elgg.org/elgg/trunk@3009 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/output')
-rw-r--r-- | views/default/output/longtext.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/default/output/longtext.php b/views/default/output/longtext.php index 41cbf8f7b..ef43faa69 100644 --- a/views/default/output/longtext.php +++ b/views/default/output/longtext.php @@ -17,5 +17,5 @@ global $CONFIG;
- echo autop(parse_urls(filter_tags($vars['value'], $CONFIG->allowedtags, $CONFIG->allowedprotocols)));
+ echo autop(parse_urls(filter_tags($vars['value'])));
?>
\ No newline at end of file |