Changeset 4597

Show
Ignore:
Timestamp:
06/29/08 07:34:27 (6 months ago)
Author:
jwage
Message:

fixes #1136

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/0.11/lib/Doctrine/Parser/Xml.php

    r3884 r4597  
    7070 
    7171                $this->arrayToXml($value, $rootNodeName, $node); 
     72            } else if (is_int($key)) {                
     73                $xml->addChild($value, 'true'); 
    7274            } else { 
    7375                $value = htmlentities($value); 
     
    7678            } 
    7779        } 
    78        
    79       return $xml->asXML(); 
     80 
     81        return $xml->asXML(); 
    8082    } 
    8183