1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-12 17:44:37 +02:00

Fixes #1075, Fixes #441 - Forum permissions cache was stored incorrectly, causing incorrect permissions for some users.

This commit is contained in:
Cameron
2015-06-25 18:17:08 -07:00
parent 6b7e1c06c3
commit b427af4f31
3 changed files with 16 additions and 5 deletions

View File

@@ -45,7 +45,8 @@ class ecache {
*/
public function setMD5($text)
{
$this->CachePageMD5 = md5($text);
$this->CachePageMD5 = md5($text);
return $this;
}
/**