merged 2 if() into one as requested by CR
Signed-off-by: Roland Haeder <roland@mxchange.org>
This commit is contained in:
parent
2a480df6fa
commit
de5125a4c7
|
@ -1271,11 +1271,8 @@ function photos_content(App $a) {
|
|||
}
|
||||
}
|
||||
} else {
|
||||
/// @TODO merge else+if into elseif and 2 into one?
|
||||
if (($album !== t('Profile Photos')) && ($album !== 'Contact Photos') && ($album !== t('Contact Photos'))) {
|
||||
if ($can_post) {
|
||||
$edit = array(t('Edit Album'), 'photos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($album) . '/edit');
|
||||
}
|
||||
if (($album !== t('Profile Photos')) && ($album !== 'Contact Photos') && ($album !== t('Contact Photos')) && $can_post) {
|
||||
$edit = array(t('Edit Album'), 'photos/' . $a->data['user']['nickname'] . '/album/' . bin2hex($album) . '/edit');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue