Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJT Smith <nexxai@gmail.com>2022-10-07 13:19:35 +0300
committerGitHub <noreply@github.com>2022-10-07 13:19:35 +0300
commitd3de8d64f477d14bf10d5cd1d17521f0c19950ed (patch)
tree29f1ef4f85b4a31c2d3f2b3272b815c34c1c334f /core/Concurrency
parent8a3c0e87e1377a7ec0bc12c40d35852bd3af27be (diff)
Typofixes (#19805)
* Fixing typo in array property * Fixing "nonexistant" throughout codebase * Fixing misspelling of Password * Typofixes in comments * Update core/Plugin/Dimension/VisitDimension.php Co-authored-by: Justin Velluppillai <justinvelluppillai@gmail.com> * Reverting change of idDimenson Co-authored-by: Justin Velluppillai <justinvelluppillai@gmail.com>
Diffstat (limited to 'core/Concurrency')
-rw-r--r--core/Concurrency/LockBackend/MySqlLockBackend.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Concurrency/LockBackend/MySqlLockBackend.php b/core/Concurrency/LockBackend/MySqlLockBackend.php
index 305fae934e..a7ebe500bd 100644
--- a/core/Concurrency/LockBackend/MySqlLockBackend.php
+++ b/core/Concurrency/LockBackend/MySqlLockBackend.php
@@ -52,7 +52,7 @@ class MySqlLockBackend implements LockBackend
// remove any existing but expired lock
// todo: we could combine get() and keyExists() in one query!
if ($this->keyExists($key)) {
- // most of the time an expired key should not exist... we don't want to lock the row unncessarily therefore we check first
+ // most of the time an expired key should not exist... we don't want to lock the row unnecessarily therefore we check first
// if value exists...
$sql = sprintf('DELETE FROM %s WHERE `key` = ? and not (%s)', $tablePrefixed, $this->getQueryPartExpiryTime());
Db::query($sql, array($key));