Remove exit expression in database provider

This commit is contained in:
Frederic Guillot
2015-10-17 22:31:04 -04:00
parent 09da289c2f
commit ad55e6ede5
5 changed files with 9 additions and 9 deletions

View File

@@ -1,8 +1,7 @@
<?php
require __DIR__.'/app/common.php';
try {
require __DIR__.'/app/common.php';
$container['router']->dispatch($_SERVER['REQUEST_URI'], isset($_SERVER['QUERY_STRING']) ? $_SERVER['QUERY_STRING'] : '');
} catch (Exception $e) {
echo 'Internal Error: '.$e->getMessage();