fix: 앱 타임존 Asia/Seoul 적용(시각 9시간 오차 수정) + 활동로그 IP 표시 제거
- appTimezone UTC → Asia/Seoul: date()가 KST로 기록되어 DB(KST)와 일치 - 활동 로그 목록/상세에서 IP 컬럼 제거 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -58,7 +58,6 @@ $actionBadge = static function (string $a): string {
|
||||
<th class="text-center">작업</th>
|
||||
<th class="text-left">대상</th>
|
||||
<th class="text-center">대상 번호</th>
|
||||
<th class="text-left">IP</th>
|
||||
<th class="text-center no-print">상세</th>
|
||||
</tr>
|
||||
</thead>
|
||||
@@ -79,14 +78,13 @@ $actionBadge = static function (string $a): string {
|
||||
</td>
|
||||
<td class="text-left pl-2"><?= esc($tableLabels[$tbl] ?? $tbl) ?></td>
|
||||
<td class="text-center"><?= (int) ($row->al_record_id ?? 0) ?: '-' ?></td>
|
||||
<td class="text-left pl-2 text-gray-500"><?= esc((string) ($row->al_ip ?? '')) ?></td>
|
||||
<td class="text-center no-print">
|
||||
<a href="<?= base_url('admin/access/activity-logs/' . (int) $row->al_idx) ?>" class="text-blue-700 hover:underline">보기</a>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endforeach; ?>
|
||||
<?php if ($list === []): ?>
|
||||
<tr><td colspan="7" class="text-center text-gray-400 py-6">조회된 로그가 없습니다.</td></tr>
|
||||
<tr><td colspan="6" class="text-center text-gray-400 py-6">조회된 로그가 없습니다.</td></tr>
|
||||
<?php endif; ?>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
Reference in New Issue
Block a user