Enable profile user theme on single photo display

This commit is contained in:
Hypolite Petovan 2023-01-10 20:40:35 -05:00
parent 1fc7d5ae85
commit 120b78e30a
1 changed files with 1 additions and 7 deletions

View File

@ -62,7 +62,7 @@ function photos_init(App $a)
Nav::setSelected('home');
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']) {
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)) {
DI::page()['aside'] .= $photo_albums_widget;
}