diff options
author | Camil Staps | 2016-07-20 10:54:07 +0200 |
---|---|---|
committer | Camil Staps | 2016-07-20 10:54:07 +0200 |
commit | 0b60b0ccc66cbcc26619ac762b8881f52fa85bf7 (patch) | |
tree | b3575a335585250b300f4eafa2e0f250d8c41a2a /index.php | |
parent | No minimum string length for assignment descriptions (diff) |
Discounts
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -49,6 +49,9 @@ $pages = array( '/assignments' => './include/assignments.php', '/assignments/new' => './include/assignments-new.php', '/assignments/edit' => './include/assignments-edit.php', + '/discounts' => './include/discounts.php', + '/discounts/new' => './include/discounts-new.php', + '/discounts/edit' => './include/discounts-edit.php', '/about' => './include/about.php', '/ajax/collapse' => './include/ajax-collapse.php' ); @@ -66,4 +69,4 @@ if ($_page === null) { $_page = '/404'; http_response_code(404); require('./include/404.php'); -}
\ No newline at end of file +} |