Call-time pass-by-reference has been deprecated error

just to inform you, i found an error after installing and trying to log in.
tables/users/user.php: Line 57:
needs no "&", so it should be
probably already know about it, but in case....
tables/users/user.php: Line 57:
- Code: Select all
$perms = $this->role__permissions(&$record);
needs no "&", so it should be
- Code: Select all
$perms = $this->role__permissions($record);
probably already know about it, but in case....