1
0
mirror of https://github.com/e107inc/e107.git synced 2025-06-24 18:05:02 +02:00

Private Messages: Fixes #1485. Also check language files for changes. 'fw' (fixed width) option added to $tp->toGlyph()

This commit is contained in:
Cameron
2016-04-03 14:37:37 -07:00
parent a21cce9c4b
commit 2c18d90b9c
14 changed files with 189 additions and 105 deletions

View File

@ -52,7 +52,12 @@ if(e_AJAX_REQUEST)
$db = e107::getDb();
if($db->select("user", "user_id,user_name", "user_name LIKE '". $q."%' ORDER BY user_name LIMIT " . $l))
$where = "user_name LIKE '". $q."%' ";
//TODO FIXME Filter by userclass. - see $frm->userlist().
if($db->select("user", "user_id,user_name", $where. " ORDER BY user_name LIMIT " . $l))
{
$data = array();
while($row = $db->fetch())