Skip to content
This repository has been archived by the owner on Sep 12, 2022. It is now read-only.

Commit

Permalink
Fix CGL violation
Browse files Browse the repository at this point in the history
  • Loading branch information
Kira Backes committed May 22, 2015
1 parent 3004939 commit 4b76507
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Est/Handler/AbstractDatabase.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ protected function getDbConnection() {
"mysql:host={$dbParameters['host']};dbname={$dbParameters['database']};charset=utf8",
$dbParameters['username'],
$dbParameters['password'],
array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES 'utf8'")
array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES 'utf8'")
);
}
return $this->dbConnection;
Expand Down

0 comments on commit 4b76507

Please sign in to comment.