aboutsummaryrefslogtreecommitdiffstats
path: root/include/contact_widgets.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/contact_widgets.php')
-rw-r--r--include/contact_widgets.php23
1 files changed, 12 insertions, 11 deletions
diff --git a/include/contact_widgets.php b/include/contact_widgets.php
index a8eb893a5..ebefa1c23 100644
--- a/include/contact_widgets.php
+++ b/include/contact_widgets.php
@@ -111,20 +111,21 @@ function categories_widget($baseurl,$selected = '') {
intval($a->profile['profile_uid']),
intval(TERM_CATEGORY)
);
- if(count($r)) {
+ if($r && count($r)) {
foreach($r as $rr)
- $terms[] = array('name' => $rr['term'], 'selected' => (($selected == $rr['term']) ? 'selected' : ''));
- }
+ $terms[] = array('name' => $rr['term'], 'selected' => (($selected == $rr['term']) ? 'selected' : ''));
- return replace_macros(get_markup_template('categories_widget.tpl'),array(
- '$title' => t('Categories'),
- '$desc' => '',
- '$sel_all' => (($selected == '') ? 'selected' : ''),
- '$all' => t('Everything'),
- '$terms' => $terms,
- '$base' => $baseurl,
+ return replace_macros(get_markup_template('categories_widget.tpl'),array(
+ '$title' => t('Categories'),
+ '$desc' => '',
+ '$sel_all' => (($selected == '') ? 'selected' : ''),
+ '$all' => t('Everything'),
+ '$terms' => $terms,
+ '$base' => $baseurl,
- ));
+ ));
+ }
+ return '';
}
function common_friends_visitor_widget($profile_uid) {