diff options
author | marijus <mario@localhost.localdomain> | 2013-12-11 18:57:42 +0100 |
---|---|---|
committer | marijus <mario@localhost.localdomain> | 2013-12-11 18:57:42 +0100 |
commit | aea1e1af82ab2f76f0d8a421ff101316421cbd84 (patch) | |
tree | fcdc1cf9c50290a8e94a7f553270c680d81bdcea /include | |
parent | 1d8c15f2df45387993624a8217b648ac10491344 (diff) | |
download | volse-hubzilla-aea1e1af82ab2f76f0d8a421ff101316421cbd84.tar.gz volse-hubzilla-aea1e1af82ab2f76f0d8a421ff101316421cbd84.tar.bz2 volse-hubzilla-aea1e1af82ab2f76f0d8a421ff101316421cbd84.zip |
this makes quotes appear as quotes in notes once page is reloaded. i guess thats fine since we use escape_tags() in notes.php
Diffstat (limited to 'include')
-rw-r--r-- | include/widgets.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/widgets.php b/include/widgets.php index 6d258d101..abbe1e2e0 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -146,7 +146,7 @@ function widget_notes($arr) { if(! feature_enabled(local_user(),'private_notes')) return ''; - $text = htmlspecialchars(get_pconfig(local_user(),'notes','text')); + $text = get_pconfig(local_user(),'notes','text'); $o = replace_macros(get_markup_template('notes.tpl'), array( '$banner' => t('Notes'), |