Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update LoggerWrapperCache.php
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
commit 0ab72ee66dbdb4db790cbd9ac1e88eaee8e4491f
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