summaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
authorkamishetty sreeja <sreeja25kamishetty@gmail.com>2016-07-14 13:49:38 +0530
committerkamishetty sreeja <sreeja25kamishetty@gmail.com>2016-07-14 13:49:38 +0530
commit8a20b43f6d87874f9e0df95c645d388b1f266c09 (patch)
treedf4fbb35f24d4a65e422f1dffddbd686344d2ca4 /public
parent99c8751059c8d28af71bb5c5b56f982890814370 (diff)
Added Feature Admin Settings Page
Diffstat (limited to 'public')
-rw-r--r--public/index.php3
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();