From 58e47ccb9464c5516c8b498d380a51fe63eac3a1 Mon Sep 17 00:00:00 2001 From: Thomas Rubini <74205383+ThomasRubini@users.noreply.github.com> Date: Fri, 20 Jan 2023 19:09:01 +0100 Subject: [PATCH] refactor view manageUser/default to manageUser/search --- Controllers/ManageUserController.php | 2 +- Views/manageUser/{default.php => search.php} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename Views/manageUser/{default.php => search.php} (100%) diff --git a/Controllers/ManageUserController.php b/Controllers/ManageUserController.php index 7480766..ceece2f 100644 --- a/Controllers/ManageUserController.php +++ b/Controllers/ManageUserController.php @@ -7,7 +7,7 @@ final class ManageUserController { Session::admin_or_die(); - return View::show("manageUser/default"); + return View::show("manageUser/search"); } public function searchAction(Array $A_urlParams = null, Array $A_postParams = null, Array $A_getParams = null) diff --git a/Views/manageUser/default.php b/Views/manageUser/search.php similarity index 100% rename from Views/manageUser/default.php rename to Views/manageUser/search.php