부분수정
Some checks failed
Close Pull Request / main (pull_request_target) Has been cancelled

This commit is contained in:
yangsh
2026-01-29 10:02:03 +09:00
parent 04c28d79f2
commit f358b44e16
13 changed files with 28 additions and 28 deletions

View File

@@ -150,9 +150,9 @@ class M705 extends BaseController
// 상세화면
public function detail($id)
{
$id = (int) $id;
$id = (string) $id;
if ($id <= 0) {
if ($id === '') {
throw \CodeIgniter\Exceptions\PageNotFoundException::forPageNotFound();
}