From ac061f68f713b4e77d03f31ff3532ad00830c2e1 Mon Sep 17 00:00:00 2001 From: Klaus Leithoff Date: Wed, 2 Nov 2011 14:57:41 +0000 Subject: [PATCH] fix typo --- phpgwapi/inc/class.egw_cache_files.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.egw_cache_files.inc.php b/phpgwapi/inc/class.egw_cache_files.inc.php index 7fc1161a52..4ae0834e5d 100644 --- a/phpgwapi/inc/class.egw_cache_files.inc.php +++ b/phpgwapi/inc/class.egw_cache_files.inc.php @@ -106,7 +106,7 @@ class egw_cache_files implements egw_cache_provider //error_log(__METHOD__.'('.array2string($keys).") file_exists('$fname') == FALSE!"); return false; } - if (file_exists($$fname_expiration=$fname.self::EXPIRATION_EXTENSION)) + if (file_exists($fname_expiration=$fname.self::EXPIRATION_EXTENSION)) { unlink($fname_expiration); }