Skip to content
Snippets Groups Projects
Commit f9e1bd9a authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms
Browse files

fix typo in StudipMemoryCache::write(), fixes #1288

Closes #1288

Merge request studip/studip!787
parent 56b961ac
No related branches found
No related tags found
No related merge requests found
......@@ -60,7 +60,7 @@ class StudipMemoryCache implements StudipCache
public function write($name, $content, $expires = self::DEFAULT_EXPIRATION)
{
$this->memory_cache[$name] = [
'expires' => time() + $expire,
'expires' => time() + $expires,
'data' => $content,
];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment