Suppress the permission problem when migrating from one linux installation to another

This commit is contained in:
Alex Tselegidis 2023-02-27 08:51:43 +01:00
parent 6226e0f86c
commit 5144823993
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ class CI_Cache_file extends CI_Driver {
if (write_file($this->_cache_path.$id, serialize($contents)))
{
chmod($this->_cache_path.$id, 0640);
@chmod($this->_cache_path.$id, 0640);
return TRUE;
}