1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-01 20:30:39 +02:00

Issue #199 - untested, but should fix it.

This commit is contained in:
Cameron
2013-05-02 13:33:16 -07:00
parent 22f63464df
commit e4d77a031a

View File

@@ -40,13 +40,13 @@ class list_members
$bullet = $this->parent->getBullet($this->parent->settings['icon']);
if(!$this->parent->$sql->gen("SELECT user_id,user_name,user_join FROM #user WHERE ".$qry))
if(!$this->parent->e107->sql->gen("SELECT user_id,user_name,user_join FROM #user WHERE ".$qry))
{
$list_data = LIST_MEMBER_2;
}
else
{
while($row = $this->parent->$sql->fetch())
while($row = $this->parent->e107->sql->fetch())
{
$record = array();
$rowheading = $this->parent->parse_heading($row['user_name']);