mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 09:41:40 +09:00
Fix #1639 various errors in PHP 8.0
This commit is contained in:
parent
0cff0c2456
commit
53d54fbeaf
2 changed files with 3 additions and 3 deletions
|
|
@ -97,12 +97,12 @@ class documentView extends document
|
|||
if(count($document_srl_list))
|
||||
{
|
||||
$document_list = DocumentModel::getDocuments($document_srl_list);
|
||||
Context::set('document_list', $document_list);
|
||||
}
|
||||
else
|
||||
{
|
||||
Context::set('document_list', array());
|
||||
$document_list = array();
|
||||
}
|
||||
Context::set('document_list', $document_list);
|
||||
|
||||
// Set target module info
|
||||
$target_mid = Context::getRequestVars()->mid ?? '';
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@
|
|||
<th>{$lang->signup_date}</th>
|
||||
<td>{zdate($memberInfo['regdate'], "Y-m-d")}</td>
|
||||
</tr>
|
||||
<!--@if($memberInfo[member_srl] == $logged_info->member_srl || $logged_info->is_admin == 'Y' )-->
|
||||
<!--@if($memberInfo['member_srl'] == $logged_info->member_srl || $logged_info->is_admin == 'Y' )-->
|
||||
<tr>
|
||||
<th>{$lang->last_login}</th>
|
||||
<td>{zdate($memberInfo['last_login'], "Y-m-d")}</td>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue