summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'index.php')
-rw-r--r--index.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/index.php b/index.php
index 5a8485c5..4dae312b 100644
--- a/index.php
+++ b/index.php
@@ -1,8 +1,12 @@
<?php
+use Kanboard\Core\Controller\Runner;
+
try {
require __DIR__.'/app/common.php';
$container['router']->dispatch();
+ $runner = new Runner($container);
+ $runner->execute();
} catch (Exception $e) {
echo 'Internal Error: '.$e->getMessage();
}