mysqli: We are using procedural mysqli so use mysqli_connect_error() instead of mysqli_error()

master
Jonathan Bither 11 years ago
parent 2457679aed
commit fbe135fb36

@ -13,7 +13,7 @@ class Db_Mysqli implements IDb {
return $this->link;
} else {
die("Unable to connect to database (as $user to $host, database $db): " . mysqli_error());
die("Unable to connect to database (as $user to $host, database $db): " . mysqli_connect_error());
}
}

Loading…
Cancel
Save