fixed syntax mistake
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user