From bbd5ce1dc404a2a2b005c8b0b5ba60c1c0d6d63d Mon Sep 17 00:00:00 2001 From: Bernd Bestel Date: Tue, 17 Sep 2019 17:54:09 +0200 Subject: [PATCH] Typo... --- services/ApiKeyService.php | 2 +- services/SessionService.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/services/ApiKeyService.php b/services/ApiKeyService.php index 08d3b7af..66b6fa74 100644 --- a/services/ApiKeyService.php +++ b/services/ApiKeyService.php @@ -21,7 +21,7 @@ class ApiKeyService extends BaseService $apiKeyRow = $this->Database->api_keys()->where('api_key = :1 AND expires > :2 AND key_type = :3', $apiKey, date('Y-m-d H:i:s', time()), $keyType)->fetch(); if ($apiKeyRow !== null) { - // This should not change the database file modification time at this is used + // This should not change the database file modification time as this is used // to determine if REALLY something has changed $dbModTime = $this->DatabaseService->GetDbChangedTime(); $apiKeyRow->update(array( diff --git a/services/SessionService.php b/services/SessionService.php index 2d3ae687..4759f4c5 100644 --- a/services/SessionService.php +++ b/services/SessionService.php @@ -18,7 +18,7 @@ class SessionService extends BaseService $sessionRow = $this->Database->sessions()->where('session_key = :1 AND expires > :2', $sessionKey, date('Y-m-d H:i:s', time()))->fetch(); if ($sessionRow !== null) { - // This should not change the database file modification time at this is used + // This should not change the database file modification time as this is used // to determine if REALLY something has changed $dbModTime = $this->DatabaseService->GetDbChangedTime(); $sessionRow->update(array(