diff options
author | kamishetty sreeja <sreeja25kamishetty@gmail.com> | 2016-07-14 13:49:38 +0530 |
---|---|---|
committer | kamishetty sreeja <sreeja25kamishetty@gmail.com> | 2016-07-14 13:49:38 +0530 |
commit | 8a20b43f6d87874f9e0df95c645d388b1f266c09 (patch) | |
tree | df4fbb35f24d4a65e422f1dffddbd686344d2ca4 /public/index.php | |
parent | 99c8751059c8d28af71bb5c5b56f982890814370 (diff) |
Added Feature Admin Settings Page
Diffstat (limited to 'public/index.php')
-rw-r--r-- | public/index.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/public/index.php b/public/index.php index 08bbaead..0d7eb782 100644 --- a/public/index.php +++ b/public/index.php @@ -133,6 +133,9 @@ if (isset($_REQUEST['p']) && preg_match("/^[a-z0-9_]*$/i", $_REQUEST['p']) && (i } elseif ($p == "admin_log") { $title = admin_log_title(); $content = admin_log(); + } elseif ($p == "admin_settings") { + $title = admin_settings_title(); + $content = admin_settings(); } elseif ($p == "credits") { require_once realpath(__DIR__ . '/../includes/pages/guest_credits.php'); $title = credits_title(); |