Skip to content

Commit

Permalink
Fixed MySQL fatal
Browse files Browse the repository at this point in the history
  • Loading branch information
evert committed Feb 15, 2016
1 parent 9c44a59 commit 2bd2115
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/Frameworks/Flake/Core/Database/Mysql.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function __construct($sHost, $sDbName, $sUsername, $sPassword) {
$this->sUsername,
$this->sPassword
);
$this->oDb->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$this->oDb->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION);
}

public function tables() {
Expand Down

0 comments on commit 2bd2115

Please sign in to comment.