diff options
author | Philip Häusler <msquare@notrademark.de> | 2014-08-23 17:24:11 +0200 |
---|---|---|
committer | Philip Häusler <msquare@notrademark.de> | 2014-08-23 17:24:11 +0200 |
commit | 7f43f3bfe50a4bfbbaa74d52b889668354ad9fcf (patch) | |
tree | 0670578707c11abc9ceaf968e069bf73a414f4d3 /public | |
parent | c8f652f57b73738f162c76f322db726bbd3a05cb (diff) |
remove html templates
Diffstat (limited to 'public')
-rw-r--r-- | public/index.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/public/index.php b/public/index.php index 5f33bb67..abe8d075 100644 --- a/public/index.php +++ b/public/index.php @@ -58,7 +58,6 @@ require_once ('includes/pages/user_news.php'); require_once ('includes/pages/user_questions.php'); require_once ('includes/pages/user_settings.php'); require_once ('includes/pages/user_shifts.php'); -require_once ('includes/pages/user_wakeup.php'); require_once ('vendor/parsedown-0.9.0/Parsedown.php'); @@ -169,9 +168,6 @@ if (isset($_REQUEST['p']) && preg_match("/^[a-z0-9_]*$/i", $_REQUEST['p']) && (i } elseif ($p == "user_questions") { $title = questions_title(); $content = user_questions(); - } elseif ($p == "user_wakeup") { - $title = wakeup_title(); - $content = user_wakeup(); } elseif ($p == "user_settings") { $title = settings_title(); $content = user_settings(); |