Development

Changeset 3131

You must first sign up to be able to contribute.

Changeset 3131

Show
Ignore:
Timestamp:
01/03/07 09:17:49 (2 years ago)
Author:
fabien
Message:

fixed caching error if multibyte string support is enabled (closes #1260)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/cache/sfFileCache.class.php

    r2791 r3131  
    468468          @fwrite($fp, $this->hash($data), 32); 
    469469        } 
    470         $len = strlen($data); 
    471         @fwrite($fp, $data, $len); 
     470        @fwrite($fp, $data); 
    472471        if ($this->fileLocking) 
    473472        {