diff options
Diffstat (limited to 'public')
-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(); |