[TESTMAN] Looks like this line escaped refactoring.. Fix that!

svn path=/trunk/; revision=1001
This commit is contained in:
Colin Finck 2017-10-03 16:17:11 +00:00
parent 7f2af339ad
commit 9375299190

View File

@ -148,7 +148,7 @@
$stmt->execute();
$stmt = $this->_dbh->prepare("INSERT INTO winetest_logs (id, log) VALUES (:id, COMPRESS(:log))");
$stmt->bindValue(":id", (int)$dbh->lastInsertId());
$stmt->bindValue(":id", (int)$this->_dbh->lastInsertId());
$stmt->bindParam(":log", $log);
$stmt->execute();
}