fixed syntax mistake
This commit is contained in:
parent
758ac00e8b
commit
1c3cc431f0
@ -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;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user