Fix call to wrong function

This commit is contained in:
Ceda EI 2018-04-23 19:44:51 +05:30
parent 87716a4dd3
commit a71693c4a0
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ function dnf() {
while ($row = $result->fetch_assoc()) { while ($row = $result->fetch_assoc()) {
$text .= $row['username'] . "\n"; $text .= $row['username'] . "\n";
} }
send_text($text); send_html($text);
$conn->close(); $conn->close();
} }