Changeset 983

Show
Ignore:
Timestamp:
10/24/07 23:31:07 (1 year ago)
Author:
mikey
Message:

update last modification timestamp if writing to file

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/org/simpletest/extensions/streamwrapper/file.php

    r919 r983  
    117117        $this->content     = substr($this->content, 0, $this->bytes_read) . $data . substr($this->content, $this->bytes_read + $dataLen); 
    118118        $this->bytes_read += $dataLen; 
     119        $this->filemtime   = time(); 
    119120        return $dataLen; 
    120121    }