';
$o .= '
' . t('Trending Interests') . '
';
$o .= '';
}
return $o;
}
function country_widget() {
$o = '';
$r = q("select distinct(`country-name`), count(`country-name`) as total from profile where `country-name` != '' group by `country-name` order by count(`country-name`) desc limit 10");
if(count($r)) {
$o .= '';
}
return $o;
}