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

[stable29] fix(memcache): remove double $$ to fix error
pull/45018/head
Ferdinand Thiessen 3 weeks 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