summaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
authorPhilip Häusler <msquare@notrademark.de>2015-12-19 23:31:08 +0100
committerPhilip Häusler <msquare@notrademark.de>2015-12-19 23:31:08 +0100
commitfacc32f13331498999ee07d467ea4ef420ebf190 (patch)
tree340fcacdcb4993200dbbc83bfa1b7380aaef12c9 /public
parentdc4eb98cafccbba7b2877691d8c3322cac87828b (diff)
#198 add basic driver license information
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 520649ed..08bbaead 100644
--- a/public/index.php
+++ b/public/index.php
@@ -9,6 +9,7 @@ $free_pages = array(
'credits',
'angeltypes',
'users',
+ 'user_driver_licenses',
'ical',
'shifts_json_export',
'shifts',
@@ -58,6 +59,8 @@ if (isset($_REQUEST['p']) && preg_match("/^[a-z0-9_]*$/i", $_REQUEST['p']) && (i
list($title, $content) = users_controller();
} elseif ($p == "user_angeltypes") {
list($title, $content) = user_angeltypes_controller();
+ } elseif ($p == "user_driver_licenses") {
+ list($title, $content) = user_driver_licenses_controller();
} elseif ($p == "shifttypes") {
list($title, $content) = shifttypes_controller();
} elseif ($p == "news") {