Skip to content

Commit

Permalink
Update LoggerWrapperCache.php
Browse files Browse the repository at this point in the history
Extra Dollar Sign caused errors in Nextcloud. Removing the Dollar Sign Solved the Problem.

Signed-off-by: Velwark <[email protected]>
  • Loading branch information
Velwark authored and backportbot[bot] committed Apr 23, 2024
1 parent 7da3f87 commit 3935dbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/Memcache/LoggerWrapperCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public function set($key, $value, $ttl = 0) {
FILE_APPEND
);

return $this->wrappedCache->set($key, $value, $$ttl);
return $this->wrappedCache->set($key, $value, $ttl);
}

/** @inheritDoc */
Expand Down

0 comments on commit 3935dbf

Please sign in to comment.