Changeset 3788

Show
Ignore:
Timestamp:
02/15/08 16:56:22 (17 months ago)
Author:
adrive
Message:

Merged 3786 (removed is_numeric check from convert boolean method, when array is passed as parameter)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/0.10/lib/Doctrine/Connection/Pgsql.php

    r3770 r3788  
    107107        if (is_array($item)) { 
    108108            foreach ($item as $key => $value) { 
    109                 if (is_bool($value) || is_numeric($item)) { 
     109                if (is_bool($value)) { 
    110110                    $item[$key] = ($value) ? 'true' : 'false'; 
    111111                }