Merge pull request #44981 from nextcloud/backport/44794/stable29

[stable29] fix(memcache): remove double $$ to fix error
backport/45001/stable29
Ferdinand Thiessen 1 week ago committed by GitHub
commit c5ee34cb4c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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