From 993b011a2814b7a02733a8fafa58af089c2058a9 Mon Sep 17 00:00:00 2001 From: CONORY Date: Sat, 19 Dec 2015 11:02:39 +0900 Subject: [PATCH] Update CacheFile.class.php --- classes/cache/CacheFile.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/classes/cache/CacheFile.class.php b/classes/cache/CacheFile.class.php index 150f634b6..a1d72211b 100644 --- a/classes/cache/CacheFile.class.php +++ b/classes/cache/CacheFile.class.php @@ -89,7 +89,7 @@ class CacheFile extends CacheBase * * @param string $key Cache key * @param int $modified_time Unix time of data modified. - * If stored time is older then modified time, return false. + * If stored time is older then modified time, return false. * @return bool Return true on valid or false on invalid. */ function isValid($key, $modified_time = 0) @@ -115,7 +115,7 @@ class CacheFile extends CacheBase * * @param string $key The $key used to store the value. * @param int $modified_time Unix time of data modified. - * If stored time is older then modified time, return false. + * If stored time is older then modified time, return false. * @return false|mixed Return false on failure. Return the string associated with the $key on success. */ function get($key, $modified_time = 0)