Update LoggerWrapperCache.php

Extra Dollar Sign caused errors in Nextcloud. Removing the Dollar Sign Solved the Problem.

Signed-off-by: Velwark <levinfrerich9@gmail.com>
backport/44794/stable27
Velwark 1 month ago committed by Côme Chilliet
parent 72dd204274
commit 4a169d98d2

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