Skip to content

Commit

Permalink
add silent fail in front of opcache_ refs https://github.com/piwik/pi…
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthieu Aubry committed Sep 26, 2014
1 parent 1c7334c commit 9a515cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cache/CacheFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ protected function opCacheInvalidate($filepath)
if (function_exists('opcache_invalidate')
&& is_file($filepath)
) {
opcache_invalidate($filepath, $force = true);
@opcache_invalidate($filepath, $force = true);
}
}
}
}

0 comments on commit 9a515cc

Please sign in to comment.