aboutsummaryrefslogtreecommitdiffstats
path: root/include/widgets.php
diff options
context:
space:
mode:
authormarijus <mario@localhost.localdomain>2013-12-11 18:57:42 +0100
committermarijus <mario@localhost.localdomain>2013-12-11 18:57:42 +0100
commitaea1e1af82ab2f76f0d8a421ff101316421cbd84 (patch)
treefcdc1cf9c50290a8e94a7f553270c680d81bdcea /include/widgets.php
parent1d8c15f2df45387993624a8217b648ac10491344 (diff)
downloadvolse-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/widgets.php')
-rw-r--r--include/widgets.php2
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'),