mirror of
https://github.com/nextcloud/server.git
synced 2026-06-06 15:23:17 -04:00
Merge pull request #44980 from nextcloud/backport/44794/stable28
[stable28] fix(memcache): remove double $$ to fix error
This commit is contained in:
commit
37592233e1
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