mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-12 18:36:29 +00:00
Empty commit
This commit is contained in:
parent
efbb7586c6
commit
e87a5ae83f
@ -1,5 +1,8 @@
|
||||
CHANGE LOG
|
||||
|
||||
2016-11-01 by Bourbon
|
||||
Remove username substring search functionality. Username searches must now be exact to return a result.
|
||||
|
||||
2016-02-18 by newman
|
||||
Fix staff seeing FLS-assigned staff PMs. Add checkbox to allow adding a linked account or editing a linked account without updating staff notes
|
||||
|
||||
|
@ -35,7 +35,7 @@
|
||||
Warned
|
||||
FROM users_main AS um
|
||||
JOIN users_info AS ui ON ui.UserID = um.ID
|
||||
WHERE Username LIKE '%".db_string($_GET['username'], true)."%'
|
||||
WHERE LCASE(Username) = LCASE('".db_string($_GET['username'], true)."')
|
||||
ORDER BY Username
|
||||
LIMIT $Limit");
|
||||
$Results = $DB->to_array();
|
||||
|
Loading…
Reference in New Issue
Block a user