summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--includes/cache.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/cache.inc b/includes/cache.inc
index c96f46058..c9574df3b 100644
--- a/includes/cache.inc
+++ b/includes/cache.inc
@@ -168,7 +168,7 @@ function cache_clear_all($cid = NULL, $table = NULL, $wildcard = FALSE) {
variable_set('cache_flush_' . $table, REQUEST_TIME);
}
elseif (REQUEST_TIME > ($cache_flush + variable_get('cache_lifetime', 0))) {
- // Clear the cache for everyone, cache_flush_delay seconds have
+ // Clear the cache for everyone, cache_lifetime seconds have
// passed since the first request to clear the cache.
db_delete($table)
->condition('expire', CACHE_PERMANENT, '<>')