Applying new rs_xxx() functions everywhere. MDL-8134

This commit is contained in:
stronk7 2007-01-29 10:47:25 +00:00
parent 7f46a94162
commit c024b94b02

View File

@ -397,8 +397,8 @@ class auth_plugin_db {
if ( $rs->RecordCount() ) {
$userlist = array();
while ($rec = $rs->FetchRow()) {
array_push($userlist, $rec['username']);
while ($rec = rs_fetch_next_record($rs)) {
array_push($userlist, $rec->username);
}
return $userlist;
} else {