diff options
author | Philip Häusler <msquare@notrademark.de> | 2011-09-06 20:45:06 +0200 |
---|---|---|
committer | Philip Häusler <msquare@notrademark.de> | 2011-09-06 20:45:06 +0200 |
commit | e665d1701ff588ad6d25ebad0876eca0ca72eafd (patch) | |
tree | 2a6419162ee7164e2050eeb7c0463a335d9f9792 /public/index.php | |
parent | 28b50acb88292392be2913be9df3e975829bb1dc (diff) |
create multiple shifts
Diffstat (limited to 'public/index.php')
-rw-r--r-- | public/index.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/public/index.php b/public/index.php index 7f24ee42..22a139ef 100644 --- a/public/index.php +++ b/public/index.php @@ -122,6 +122,10 @@ if (in_array($p, $privileges)) { require_once ('includes/pages/admin_import.php'); $content = admin_import(); } + elseif ($p == "admin_shifts") { + require_once ('includes/pages/admin_shifts.php'); + $content = admin_shifts(); + } elseif ($p == "admin_log") { require_once ('includes/pages/admin_log.php'); $content = admin_log(); |