From 935e57c28095744818437a994e5ff221de8c9722 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 20 Mar 2023 23:16:49 -0400 Subject: [PATCH] spelling: than Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/Protocol/Feed.php | 2 +- src/Protocol/OStatus.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)) {