From 0d224f71c57750740bed7d9bedc95a463b959014 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=B5=9C=EC=A4=80=ED=9D=A0?= Date: Wed, 19 Nov 2025 12:57:00 +0900 Subject: [PATCH] dbmsv4 init...1 --- app/Controllers/Auth/AuthController.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/app/Controllers/Auth/AuthController.php b/app/Controllers/Auth/AuthController.php index 9f10a4e..b4416cd 100644 --- a/app/Controllers/Auth/AuthController.php +++ b/app/Controllers/Auth/AuthController.php @@ -45,20 +45,14 @@ abstract class AuthController extends AbstractWebController final public function login(): RedirectResponse { try { - echo "TEST"; - exit; $this->login_process(); $redirect_url = $this->getAuthContext()->popPreviousUrl() ?? implode(DIRECTORY_SEPARATOR, $this->getActionPaths()); return redirect()->to($redirect_url)->with('message', MESSAGES['LOGIN']); } catch (ValidationException $e) { - echo $e->getMessage(); - exit; // 검증 실패 시 폼으로 돌아가서 오류 메시지 표시 log_message('error', $e->getMessage()); return redirect()->back()->withInput()->with('message', $e->getMessage()); } catch (\Exception $e) { - echo $e->getMessage(); - exit; log_message('error', $e->getMessage()); return redirect()->back()->withInput()->with('message', $e->getMessage()); // return redirect()->to($this->getMyAuth()->popPreviousUrl())->with('message', $e->getMessage());