Fixed mis-spelled constant name

This commit is contained in:
Timothy Warren 2012-03-19 12:00:32 -04:00
parent 0dc2817347
commit ec0269a78b
3 changed files with 3 additions and 3 deletions

View File

@ -430,15 +430,15 @@ class Firebird_Result {
switch($fetch_style) switch($fetch_style)
{ {
case PDO::FETCH_OBJ: case PDO::FETCH_OBJ:
return fbird_fetch_object($this->statement, fbird_FETCH_BLOBS); return fbird_fetch_object($this->statement, IBASE_FETCH_BLOBS);
break; break;
case PDO::FETCH_NUM: case PDO::FETCH_NUM:
return fbird_fetch_row($this->statement, fbird_FETCH_BLOBS); return fbird_fetch_row($this->statement, IBASE_FETCH_BLOBS);
break; break;
default: default:
return fbird_fetch_assoc($this->statement, fbird_FETCH_BLOBS); return fbird_fetch_assoc($this->statement, IBASE_FETCH_BLOBS);
break; break;
} }
} }

Binary file not shown.

Binary file not shown.