diff options
author | friendica <info@friendica.com> | 2013-12-09 18:54:50 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-12-09 18:54:50 -0800 |
commit | 251720bfd32541901b9e845651dbc037b34065e2 (patch) | |
tree | 89d4415f1c2340cf0a5b4fadd1b6d900cbe0e360 /include/widgets.php | |
parent | d13f693f85b9528559130ed642e3128607e1967c (diff) | |
download | volse-hubzilla-251720bfd32541901b9e845651dbc037b34065e2.tar.gz volse-hubzilla-251720bfd32541901b9e845651dbc037b34065e2.tar.bz2 volse-hubzilla-251720bfd32541901b9e845651dbc037b34065e2.zip |
turn private notes into a feature
Diffstat (limited to 'include/widgets.php')
-rw-r--r-- | include/widgets.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/widgets.php b/include/widgets.php index 2e8169bd7..3534c3978 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -140,6 +140,9 @@ function widget_follow($args) { function widget_notes($arr) { if(! local_user()) return ''; + if(! feature_enabled(local_user(),'private_notes')) + return ''; + $text = htmlspecialchars(get_pconfig(local_user(),'notes','text')); $o = replace_macros(get_markup_template('notes.tpl'), array( |