Dump out the exception.

This commit is contained in:
jgen 2014-02-18 20:34:39 -05:00
parent 491069540e
commit 7f6672a2d3

View file

@ -44,7 +44,13 @@ foreach($files as $filename) {
// connect to the database
$database = new Database();
try {
$config = new DatabaseConfig($database);
}
catch(Exception $e)
{
die(var_dump($e));
}
// load the theme parts
foreach(_get_themelet_files(get_theme()) as $themelet) {