theming for default group selector

This commit is contained in:
friendica 2012-05-18 01:38:11 -07:00
parent 5ecaeb8e5c
commit 34b79b4f2b
4 changed files with 9 additions and 4 deletions

View file

@ -172,7 +172,10 @@ function mini_group_select($uid,$gid = 0) {
}
logger('groups: ' . print_r($grps,true));
$o = replace_macros(get_markup_template('group_selection.tpl'), array('$groups' => $grps ));
$o = replace_macros(get_markup_template('group_selection.tpl'), array(
'$label' => t('Default privacy group for new contacts'),
'$groups' => $grps
));
return $o;
}