mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
Remove unnecessary parentheses in MySQL error handler
This commit is contained in:
parent
72287b2fe5
commit
74b07cb5c4
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ class DBMySQL extends DB
|
|||
// Check connection error
|
||||
if($mysqli->connect_errno)
|
||||
{
|
||||
$this->setError($mysqli->connect_errno, $mysqli->connect_error());
|
||||
$this->setError($mysqli->connect_errno, $mysqli->connect_error);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue