mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-30 22:51:37 +02:00
"replacing colons with dashes in filenames, as some windows installs seem to have problem with colons in filenames"
This commit is contained in:
@ -137,7 +137,7 @@ class egw_cache_files implements egw_cache_provider
|
||||
*/
|
||||
private function filename(array $keys,$mkdir=false)
|
||||
{
|
||||
$fname = $this->base_path.'/'.implode('/',$keys);
|
||||
$fname = $this->base_path.'/'.str_replace(':','-',implode('/',$keys));
|
||||
|
||||
if ($mkdir && !file_exists($dirname=dirname($fname)))
|
||||
{
|
||||
|
Reference in New Issue
Block a user