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 solracsf committed May 31, 2024
1 parent 981101f commit 0ab72ee
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 0ab72ee

Please sign in to comment.