diff --git a/src/Protocol/Feed.php b/src/Protocol/Feed.php index a83819742..bfb744838 100644 --- a/src/Protocol/Feed.php +++ b/src/Protocol/Feed.php @@ -945,7 +945,7 @@ class Feed $previous_created = $last_update; - // Don't cache when the last item was posted less then 15 minutes ago (Cache duration) + // Don't cache when the last item was posted less than 15 minutes ago (Cache duration) if ((time() - strtotime($owner['last-item'])) < 15 * 60) { $result = DI::cache()->get($cachekey); if (!$nocache && !is_null($result)) { diff --git a/src/Protocol/OStatus.php b/src/Protocol/OStatus.php index abaa298eb..ff8fc3cbe 100644 --- a/src/Protocol/OStatus.php +++ b/src/Protocol/OStatus.php @@ -1709,7 +1709,7 @@ class OStatus $previous_created = $last_update; - // Don't cache when the last item was posted less then 15 minutes ago (Cache duration) + // Don't cache when the last item was posted less than 15 minutes ago (Cache duration) if ((time() - strtotime($owner['last-item'])) < 15*60) { $result = DI::cache()->get($cachekey); if (!$nocache && !is_null($result)) {