id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc,qualification
2294,sfFileCache::clean() when dir does not exist,lsmith,fabien,Before calling cleanDir() there should be a check if the dir actually exists. Alternatively this check should be done inside cleanDir(). I have run into this issue when cleaning the cache when using i18n and when I have not yet called the interface with all languages.\r\n\r\n  public function clean($namespace = null_ $mode = 'all')\r\n  {\r\n    $namespace = str_replace('/'_ DIRECTORY_SEPARATOR_ $namespace);\r\n\r\n    $dir = $this->cacheDir.DIRECTORY_SEPARATOR.$namespace;\r\n    if (!file_exists($dir)) {\r\n      return true;\r\n    }\r\n    return $this->cleanDir($dir_ $mode);\r\n  },defect,closed,minor,1.0.8,cache,1.0.7,fixed,,,Unreviewed
