Changeset 229

Show
Ignore:
Timestamp:
08/30/07 12:45:08 (11 months ago)
Author:
hans
Message:

ticket:72 - Fixed unreplaced line.separator property with PHP_EOL

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/2.3/classes/phing/system/util/Properties.php

    r227 r229  
    136136        $buf = "";         
    137137        foreach($this->properties as $key => $item) { 
    138             $buf .= $key . "=" . $this->outVal($item) . Phing::getProperty('line.separator')
     138            $buf .= $key . "=" . $this->outVal($item) . PHP_EOL
    139139        } 
    140140        return $buf;     
  • branches/2.3/etc/VERSION.TXT

    r123 r229  
    1 Phing TRUNK (2.3dev) 
     1Phing 2.3 BRANCH (2.3dev) 
  • trunk/classes/phing/system/util/Properties.php

    r227 r229  
    136136        $buf = "";         
    137137        foreach($this->properties as $key => $item) { 
    138             $buf .= $key . "=" . $this->outVal($item) . Phing::getProperty('line.separator')
     138            $buf .= $key . "=" . $this->outVal($item) . PHP_EOL
    139139        } 
    140140        return $buf;