Formatting

This commit is contained in:
Miles Lott 2001-02-13 15:19:19 +00:00
parent 98213efd4e
commit 5945a456e7

View File

@ -113,16 +113,16 @@
$this->db->next_record();
$accounts[] = Array(
"account_id" => $allValues[$i]["uidnumber"][0],
"account_lid" => $allValues[$i]["uid"][0],
"account_type" => $this->db->f("account_type"),
"account_firstname" => $allValues[$i]["givenname"][0],
"account_lastname" => $allValues[$i]["sn"][0],
"account_status" => $this->db->f("account_status")
);
"account_id" => $allValues[$i]["uidnumber"][0],
"account_lid" => $allValues[$i]["uid"][0],
"account_type" => $this->db->f("account_type"),
"account_firstname" => $allValues[$i]["givenname"][0],
"account_lastname" => $allValues[$i]["sn"][0],
"account_status" => $this->db->f("account_status")
);
#print "data".$allValues[$i]["uid"][0]."<br>";
}
}
return $accounts;
}