1
0
mirror of https://github.com/maximebf/php-debugbar.git synced 2025-01-17 13:28:35 +01:00

fixed infinite recursion in TraceablePDO (fixed #124)

This commit is contained in:
maximebf 2014-04-25 11:25:03 -05:00
parent b51fc22937
commit 6f58aee3eb

View File

@ -37,7 +37,7 @@ class TraceablePDO extends PDO
public function errorInfo()
{
return $this->errorInfo();
return $this->pdo->errorInfo();
}
public function exec($sql)