Development

Changeset 33545

You must first sign up to be able to contribute.

Changeset 33545

Show
Ignore:
Timestamp:
10/05/12 12:49:45 (8 months ago)
Author:
fabien
Message:

[1.4] fixed sfPDOSessionStorage for Oracle (closes #10022)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.4/lib/storage/sfPDOSessionStorage.class.php

    r13143 r33545  
    116116      if (count($sessionRows) == 1) 
    117117      { 
    118         return $sessionRows[0][0]; 
     118        return is_resource($sessionRows[0][0]) ? stream_get_contents($sessionRows[0][0]) : $sessionRows[0][0]; 
    119119      } 
    120120      else