Open Cleonet opened 7 years ago
Is the @
not squashing the warning? The problem is that this loses atomacy, which is important if handling requests in parallel, such as via apache2 or nginx.
@ only squashes the error not the warning. I would suggest adding the if condition or you will have constant warning garbage in your logs.
I have to replace line 274 :
@unlink($this->cacheDir.'/urlMap.cache');
by
Thank you