Skip to content

Commit bb32cde

Browse files
VelwarkMichaIng
authored andcommitted
Update LoggerWrapperCache.php
Extra Dollar Sign caused errors in Nextcloud. Removing the Dollar Sign Solved the Problem. Signed-off-by: Velwark <[email protected]>
1 parent b127e02 commit bb32cde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/private/Memcache/LoggerWrapperCache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function set($key, $value, $ttl = 0) {
7575
FILE_APPEND
7676
);
7777

78-
return $this->wrappedCache->set($key, $value, $$ttl);
78+
return $this->wrappedCache->set($key, $value, $ttl);
7979
}
8080

8181
/** @inheritDoc */

0 commit comments

Comments
 (0)