diff options
author | friendica <info@friendica.com> | 2013-12-11 15:32:25 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-12-11 15:32:25 -0800 |
commit | c57b6745e8d7222d9cecfb04cd81c9ef7eb25d05 (patch) | |
tree | cc9eef5ea3c6676cd537f2f89776ab6d3c835db1 /include/widgets.php | |
parent | 2c02f57f276658269a6cc2031fb0fc9ac0a9077c (diff) | |
parent | 06c81e189f031a74c54aa14b1f29c93379e7cf3c (diff) | |
download | volse-hubzilla-c57b6745e8d7222d9cecfb04cd81c9ef7eb25d05.tar.gz volse-hubzilla-c57b6745e8d7222d9cecfb04cd81c9ef7eb25d05.tar.bz2 volse-hubzilla-c57b6745e8d7222d9cecfb04cd81c9ef7eb25d05.zip |
Merge https://github.com/friendica/red into zpull
Conflicts:
view/theme/redbasic/css/style.css
Diffstat (limited to 'include/widgets.php')
-rw-r--r-- | include/widgets.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/widgets.php b/include/widgets.php index cea5a6ce2..abbe1e2e0 100644 --- a/include/widgets.php +++ b/include/widgets.php @@ -57,6 +57,9 @@ function widget_collections($args) { function widget_suggestions($arr) { + if((! local_user()) || (! feature_enabled(local_user(),'suggest'))) + return ''; + require_once('include/socgraph.php'); $r = suggestion_query(local_user(),get_observer_hash(),0,20); @@ -143,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'), @@ -330,4 +333,4 @@ function widget_tagcloud_wall($arr) { if(feature_enabled($a->profile['profile_uid'],'tagadelic')) return tagblock('search',$a->profile['profile_uid'],$limit,$a->profile['channel_hash'],ITEM_WALL); return ''; -}
\ No newline at end of file +} |