Changeset 2170

Show
Ignore:
Timestamp:
11/02/07 14:16:36 (14 months ago)
Author:
david
Message:

error suppression, otherwise [2169] would be pretty pointless, refs #608

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/0.11/src/filter/AgaviExecutionFilter.class.php

    r2169 r2170  
    8989    } 
    9090    $filename = AgaviConfig::get('core.cache_dir') . DIRECTORY_SEPARATOR . self::CACHE_SUBDIR . DIRECTORY_SEPARATOR . implode(DIRECTORY_SEPARATOR, $groups) . '.cefcache'; 
    91     $data = file_get_contents($filename); 
     91    $data = @file_get_contents($filename); 
    9292    if($data !== false) { 
    9393      return unserialize($data);