Skip to content

Commit

Permalink
take out of try/catch for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
driusan committed Mar 8, 2023
1 parent b5220ce commit 13ceb93
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions php/libraries/Database.class.inc
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,11 @@ class Database implements LoggerAwareInterface

}

$this->_PDO = new PDO(
"mysql:host=$host;dbname=$database;charset=UTF8",
$username,
$password
);
try {
$this->_PDO = new PDO(
"mysql:host=$host;dbname=$database;charset=UTF8",
Expand Down

0 comments on commit 13ceb93

Please # to comment.