Repair member list page

This commit is contained in:
leosw
2018-10-18 23:13:39 +02:00
parent 0f00e4d991
commit 53aae22a60
3 changed files with 19 additions and 23 deletions

View File

@@ -45,10 +45,7 @@ class Locale
/*****
** Populate the object using raw data from SQL
*****/
private function populate($row) {
$this->forcePopulate($row);
}
public function forcePopulate($row) {
public function populate($row) {
$this->name = $row['name'];
$this->display_name = $row['display_name'];
$this->flag_name = $row['flag_name'];
@@ -98,7 +95,7 @@ class Locales
for($i = 0; $i < $this->number; $i++) {
$locale = pg_fetch_assoc($result, $i);
$this->objs[$i] = new Locale;
$this->objs[$i]->forcePopulate($locale);
$this->objs[$i]->populate($locale);
}
}
}