fixed syntax mistake

This commit is contained in:
Andreas 2019-09-20 16:29:01 +02:00
parent 758ac00e8b
commit 1c3cc431f0

View File

@ -11,7 +11,7 @@ class User {
public $permissions; public $permissions;
public $active; public $active;
function User($id, $username, $email, $password, $reg_date, $login_date, $reg_ip, $permissions, $active){ function User($id, $username, $email, $password, $reg_date, $login_date, $reg_ip, $permissions, $active){
parent->__construct(); parent::__construct();
$this->id = $id; $this->id = $id;
$this->username = $username; $this->username = $username;
$this->email = $email; $this->email = $email;