enygma/offline-issues

E_WARNING issue via _fetch()

Closed this issue · 1 comments

Upon an initial run:

PHP Warning:  filectime(): stat failed for /tmp/20100517_Foo_issues in gh-issues on line 33
Warning: filectime(): stat failed for /tmp/20100517_Foo_issues in /gh-issues on line 33

Possible fix:

  • if(filectime($file)<=time()-$this->_ttl){
  • if(!file_exists($file) || filectime($file)<=time()-$this->_ttl){

corrected! thanks!