mirror of
https://github.com/WhatCD/Gazelle.git
synced 2025-02-21 20:59:02 +00:00
Empty commit
This commit is contained in:
parent
37f397ba47
commit
3e701c892b
@ -118,7 +118,7 @@
|
||||
$DB->query("
|
||||
SELECT ID
|
||||
FROM users_main
|
||||
WHERE Username = _utf8 '$User'
|
||||
WHERE Username = _utf8 '" . db_string($User) . "'
|
||||
COLLATE utf8_bin");
|
||||
list($UserID) = $DB->next_record();
|
||||
$Usernames[$User] = $UserID ? $UserID : '';
|
||||
@ -161,7 +161,7 @@
|
||||
$DB->query("
|
||||
SELECT ID
|
||||
FROM users_main
|
||||
WHERE Username = _utf8 '$User'
|
||||
WHERE Username = _utf8 '" . db_string($User) . "'
|
||||
COLLATE utf8_bin");
|
||||
list($UserID) = $DB->next_record();
|
||||
$Usernames[$User] = $UserID ? $UserID : '';
|
||||
|
@ -12,7 +12,6 @@
|
||||
<strong class="important_text"><?=$Err ?></strong><br /><br />
|
||||
<? } ?>
|
||||
An email will be sent to your email address with information on how to reset your password.<br /><br />
|
||||
|
||||
<table class="layout" cellpadding="2" cellspacing="1" border="0" align="center">
|
||||
<tr valign="top">
|
||||
<td align="right">Email </td>
|
||||
|
Loading…
Reference in New Issue
Block a user