Changeset 6835

Show
Ignore:
Timestamp:
12/01/09 14:05:03 (8 months ago)
Author:
jwage
Message:

[1.2][DC-306] Fixes issue with oracle adapter statement using wrong constant

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/1.2/lib/Doctrine/Adapter/Statement/Oracle.php

    r6661 r6835  
    314314                return oci_fetch_array($this->statement, OCI_NUM + OCI_RETURN_NULLS + OCI_RETURN_LOBS); 
    315315            break; 
    316             case FETCH_OBJ: 
     316            case Doctrine_Core::FETCH_OBJ: 
    317317                return oci_fetch_object($this->statement, OCI_NUM + OCI_RETURN_NULLS + OCI_RETURN_LOBS); 
    318318            break;