We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Next Error Warning: mysqli_query() expects parameter 1 to be mysqli, array given in C:\OSPanel\domains\DOMEN.RU\Admin\Templates\ban_msg.tpl on line 11
Warning: mysqli_query() expects parameter 1 to be mysqli, array given in C:\OSPanel\domains\DOMEN.RU\Admin\Templates\ban_msg.tpl on line 11
In the next line
$ban = mysqli_query($GLOBALS["link"], "SELECT * FROM ".TB_PREFIX."banlist WHERE uid = '".(int) $session->uid."' and active = 1");
$ban = mysqli_query($GLOBALS["link"], "SELECT * FROM ".TB_PREFIX."banlist WHERE
= '".(int) $session->uid."' and active = 1");
Correction
$ban = mysqli_query($database->dblink, "SELECT * FROM ".TB_PREFIX."banlist WHERE uid = '".(int) $session->uid."' and active = 1");
$ban = mysqli_query($database->dblink, "SELECT * FROM ".TB_PREFIX."banlist WHERE
I apologize for my English.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Next Error
Warning: mysqli_query() expects parameter 1 to be mysqli, array given in C:\OSPanel\domains\DOMEN.RU\Admin\Templates\ban_msg.tpl on line 11
In the next line
$ban = mysqli_query($GLOBALS["link"], "SELECT * FROM ".TB_PREFIX."banlist WHERE
uid= '".(int) $session->uid."' and active = 1");
Correction
$ban = mysqli_query($database->dblink, "SELECT * FROM ".TB_PREFIX."banlist WHERE
uid= '".(int) $session->uid."' and active = 1");
I apologize for my English.
The text was updated successfully, but these errors were encountered: