From 03b0fca8590b48ebee9be1f2df1e048a86494763 Mon Sep 17 00:00:00 2001 From: conory Date: Sat, 19 Dec 2015 11:05:17 +0900 Subject: [PATCH] Revert "Update CacheFile.class.php" This reverts commit 993b011a2814b7a02733a8fafa58af089c2058a9. --- 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 a1d72211b..150f634b6 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)