Dump out the exception.
This commit is contained in:
parent
491069540e
commit
7f6672a2d3
1 changed files with 6 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Reference in a new issue