1
0
Fork 0

link events + personal notes to profile tabs

This commit is contained in:
Friendika 2011-06-13 20:32:30 -07:00
commit fb92dbf5d6
9 changed files with 87 additions and 18 deletions

View file

@ -5,19 +5,9 @@ function apps_content(&$a) {
$o .= '<h3>' . t('Applications') . '</h3>';
$apps = false;
if(local_user()) {
$apps = true;
$o .= '<div class="app-title"><a href="notes">' . t('Private Notes') . '</a></div>';
}
if($a->apps) {
$apps = true;
if($a->apps)
$o .= $a->apps;
}
if(! $apps)
else
notice( t('No installed applications.') . EOL);
return $o;