mirror of
https://github.com/nextcloud/server.git
synced 2026-06-06 23:34:22 -04:00
Merge pull request #44981 from nextcloud/backport/44794/stable29
[stable29] fix(memcache): remove double $$ to fix error
This commit is contained in:
commit
c5ee34cb4c
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Reference in a new issue