Skip to content

Commit

Permalink
Merge pull request #44980 from nextcloud/backport/44794/stable28
Browse files Browse the repository at this point in the history
[stable28] fix(memcache): remove double $$ to fix error
  • Loading branch information
solracsf authored Jun 3, 2024
2 parents aac7365 + 0ab72ee commit 3759223
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 3759223

Please sign in to comment.