phpBB

Code Changes

File: phpbb/cache/driver/file.php

  Unmodified   Added   Modified   Removed
Line 567Line 567
			}

fclose($handle);

			}

fclose($handle);

 

if (function_exists('opcache_invalidate'))
{
@opcache_invalidate($file);
}


if (!function_exists('phpbb_chmod'))
{


if (!function_exists('phpbb_chmod'))
{

Line 596Line 601
	*/
protected function clean_varname($varname)
{

	*/
protected function clean_varname($varname)
{

		return str_replace('/', '-', $varname);

		return str_replace(array('/', '\\'), '-', $varname);

	}
}


	}
}