minor changes

This commit is contained in:
skeeter 2001-02-03 03:31:00 +00:00
parent d8fa0de0b4
commit b38b7d975e
2 changed files with 2 additions and 1 deletions

View File

@ -105,6 +105,7 @@
}
}
$apps->save_apps();
@reset($new_permissions);
$cd = account_edit(array('loginid' => $n_loginid, 'firstname' => $n_firstname,
'lastname' => $n_lastname, 'passwd' => $n_passwd,

View File

@ -141,7 +141,7 @@
$name = $this->db->f("app_name");
$title = $this->db->f("app_title");
$status = $this->db->f("app_enabled");
$phpgw_info["apps"]["$name"] = array("title" => $title, "name" => $name, "enabled" => True, "status" => $status);
$phpgw_info["apps"][$name] = array("title" => $title, "name" => $name, "enabled" => True, "status" => $status);
}
}
}