fixed bug preventing signups

This commit is contained in:
2025-04-14 22:55:55 -06:00
parent 420022dbf8
commit e05da10550
+1 -1
View File
@@ -25,7 +25,7 @@ function user_id_exists($user_id)
function username_exists($username)
{
$result = exec_stmt('SELECT username FROM user WHERE username = "?"', 'i', $username)->fetch_assoc();
$result = exec_stmt('SELECT username FROM user WHERE username = ?', 'i', $username)->fetch_assoc();
if ($result == null)
return false;