Конфиги вынесены в config.php; Cannot use object of type User as array.

This commit is contained in:
Igor Barkov (iwork) 2020-09-30 14:02:51 +03:00
parent 6ad9a04a25
commit ca7b249bb2
1 changed files with 2 additions and 2 deletions

View File

@ -7,15 +7,15 @@ $userInfo = new UserInfo($login);
$presentsModel = new PresentsModel($userInfo->id);
$presentsList = $presentsModel->getAllPresents();
$userInfo->watcher_id = $userInfo->id ?? null;
Template::header('Информация о'.$userInfo->login);
if (empty($userInfo->id)): ?>
Template::header('Ошибка');
Ошибка: персонаж <em><?= $login ?></em> не найден...
<p><a style="color: #99f" href="javascript:window.history.go(-1);">←назад</a></p>
<?php exit(); endif; ?>
<?php
Template::header('Информация о'.$userInfo->login);
try {
$userInfo->showUserInfo();