mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 20:49:08 +01:00
"replacing colons with dashes in filenames, as some windows installs seem to have problem with colons in filenames"
This commit is contained in:
parent
0275b183dd
commit
b6eda8e39b
@ -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)))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user