1
0
mirror of https://github.com/dg/dibi.git synced 2025-10-22 10:16:02 +02:00

* DibiResult::fetchAssoc() rewritten

This commit is contained in:
David Grudl
2007-02-05 05:14:48 +00:00
parent 0c86515076
commit 4b2e04220b
3 changed files with 49 additions and 31 deletions

View File

@@ -58,7 +58,7 @@ class DibiException extends Exception
if ($this->dbError) {
$s .= "\nERROR: ";
if (isset($this->dbError['code']))
if (isset($this->dbError['code']))
$s .= "[" . $this->dbError['code'] . "] ";
$s .= $this->dbError['message'];