From 1e5dd6011b2a968f2a53795703a4c66f820f86e7 Mon Sep 17 00:00:00 2001 From: billz Date: Fri, 15 Mar 2019 12:39:03 +0000 Subject: [PATCH] Updated with about page --- index.php | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/index.php b/index.php index 143bbf2c..0a7c343f 100755 --- a/index.php +++ b/index.php @@ -34,6 +34,7 @@ include_once( 'includes/configure_client.php' ); include_once( 'includes/networking.php' ); include_once( 'includes/themes.php' ); include_once( 'includes/data_usage.php' ); +include_once( 'includes/about.php' ); $output = $return = 0; $page = $_GET['page']; @@ -120,7 +121,7 @@ $theme_url = 'dist/css/'.htmlspecialchars($theme, ENT_QUOTES);
  • - +
  • @@ -166,7 +167,10 @@ $theme_url = 'dist/css/'.htmlspecialchars($theme, ENT_QUOTES);
  • - +
  • + +
  • + @@ -222,6 +226,9 @@ $extraFooterScripts = array(); case "system_info": DisplaySystem(); break; + case "about": + DisplayAbout(); + break; default: DisplayDashboard(); }