minor fixes to apps (don't show notes if not logged in) and photos (tag delete link is leaking to unauthorised users)

这个提交包含在:
Friendika 2011-06-08 21:43:32 -07:00
父节点 df8ac668b8
当前提交 dea721a3f8
共有 2 个文件被更改,包括 14 次插入3 次删除

查看文件

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

查看文件

@ -1106,9 +1106,10 @@ function photos_content(&$a) {
$tag_str .= bbcode($t);
}
$tags = array(t('Tags: '), $tag_str);
if($cmd === 'edit')
if($cmd === 'edit') {
$tags[] = $a->get_baseurl() . '/tagrm/' . $link_item['id'];
$tags[] = t('[Remove any tag]');
}
}