From a07ee2131a9e644ff1fd10d331c1134cfec17c9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yi=C4=9Fit=20Kerem=20Oktay?= Date: Mon, 17 Aug 2020 16:54:12 +0300 Subject: [PATCH] add options to index --- admin/index.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/admin/index.php b/admin/index.php index 932c8ed..47d5c3d 100644 --- a/admin/index.php +++ b/admin/index.php @@ -95,7 +95,11 @@ else{ case 'logout': User::logout(); break; - + + case 'options': + require_once("options.php"); + break; + default: require_once("dashboard.php"); break;