mirror of
https://gitlab.com/ceda_ei/Datology-Bot
synced 2025-05-09 20:06:52 +02:00
Fix wrong keyname in webhook.php.
This commit is contained in:
parent
d82158c543
commit
fe02ebe2fb
@ -41,7 +41,7 @@ $alphabet = array(
|
|||||||
"y" => 0,
|
"y" => 0,
|
||||||
"z" => 0
|
"z" => 0
|
||||||
);
|
);
|
||||||
$conn = new mysqli($mysql['servername'], $mysql['username'], $mysql['password'], $mysql['dbname']);
|
$conn = new mysqli($mysql['servername'], $mysql['username'], $mysql['password'], $mysql['database']);
|
||||||
if ($conn->connect_error) {
|
if ($conn->connect_error) {
|
||||||
die("Connection failed: " . $conn->connect_error);
|
die("Connection failed: " . $conn->connect_error);
|
||||||
}
|
}
|
||||||
@ -60,7 +60,7 @@ for ($i = 97; $i <= 122 ; $i++) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ($result->num_rows > 0) {
|
if ($result->num_rows > 0) {
|
||||||
$query = "DELETE FROM " . $mysql['dbname'] . " WHERE id = $sender_id ;";
|
$query = "DELETE FROM " . $mysql['database'] . " WHERE id = $sender_id ;";
|
||||||
$conn->query($query);
|
$conn->query($query);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user