this makes quotes appear as quotes in notes once page is reloaded. i guess thats fine since we use escape_tags() in notes.php

This commit is contained in:
marijus 2013-12-11 18:57:42 +01:00
parent 1d8c15f2df
commit aea1e1af82

View File

@ -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'),