Browse Source

Merge pull request #44794 from Velwark/patch-3

fix(memcache): remove double $$ to fix error
pull/44982/head
Andy Scherzinger 1 week ago
parent
commit
9872755711
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      lib/private/Memcache/LoggerWrapperCache.php

+ 1
- 1
lib/private/Memcache/LoggerWrapperCache.php View File

@@ -75,7 +75,7 @@ class LoggerWrapperCache extends Cache implements IMemcacheTTL {
FILE_APPEND
);

return $this->wrappedCache->set($key, $value, $$ttl);
return $this->wrappedCache->set($key, $value, $ttl);
}

/** @inheritDoc */

Loading…
Cancel
Save