undo last commit, this is better fixed in lists.inc

This commit is contained in:
Roland Gruber 2006-04-27 14:26:43 +00:00
parent 364050afbe
commit f0c891b9f4
2 changed files with 2 additions and 2 deletions

View File

@ -431,6 +431,7 @@ class lamList {
$list = array();
// load accounts from LDAP
for ($i = 0; $i < sizeof($accounts); $i++) {
if (!isset($this->entries[$accounts[$i]]['dn'])) continue;
$_SESSION["accountPDF-$i"] = new accountContainer($this->type, "accountPDF-$i");
$_SESSION["accountPDF-$i"]->load_account($this->entries[$accounts[$i]]['dn']);
$list[$i] = $_SESSION["accountPDF-$i"];

View File

@ -131,6 +131,7 @@ class lamUserList extends lamList {
* Manages all POST actions (e.g. button pressed) for the account lists.
*/
function listDoPost() {
parent::listDoPost();
// check if primary group should be translated
if (isset($_POST['apply_trans_primary'])) {
$this->trans_primary = $_POST['trans_primary'];
@ -150,8 +151,6 @@ class lamUserList extends lamList {
}
}
}
if (isset($_POST['trans_primary'])) unset($_POST['trans_primary']);
parent::listDoPost();
}
/**