mirror of
https://github.com/friendica/friendica
synced 2024-11-10 04:22:54 +00:00
Enable profile user theme on single photo display
This commit is contained in:
parent
1fc7d5ae85
commit
120b78e30a
1 changed files with 1 additions and 7 deletions
|
@ -62,7 +62,7 @@ function photos_init(App $a)
|
||||||
Nav::setSelected('home');
|
Nav::setSelected('home');
|
||||||
|
|
||||||
if (DI::args()->getArgc() > 1) {
|
if (DI::args()->getArgc() > 1) {
|
||||||
$owner = User::getOwnerDataByNick(DI::args()->getArgv()[1]);
|
$owner = Profile::load(DI::app(), DI::args()->getArgv()[1], false);
|
||||||
if (!isset($owner['account_removed']) || $owner['account_removed']) {
|
if (!isset($owner['account_removed']) || $owner['account_removed']) {
|
||||||
throw new HTTPException\NotFoundException(DI::l10n()->t('User not found.'));
|
throw new HTTPException\NotFoundException(DI::l10n()->t('User not found.'));
|
||||||
}
|
}
|
||||||
|
@ -111,12 +111,6 @@ function photos_init(App $a)
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empty(DI::page()['aside'])) {
|
|
||||||
DI::page()['aside'] = '';
|
|
||||||
}
|
|
||||||
|
|
||||||
DI::page()['aside'] .= Widget\VCard::getHTML($owner);
|
|
||||||
|
|
||||||
if (!empty($photo_albums_widget)) {
|
if (!empty($photo_albums_widget)) {
|
||||||
DI::page()['aside'] .= $photo_albums_widget;
|
DI::page()['aside'] .= $photo_albums_widget;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue