fixed problem with PDFs (1477111)

This commit is contained in:
Roland Gruber 2006-04-26 18:57:30 +00:00
parent 185d3fd2ce
commit 364050afbe
1 changed files with 2 additions and 1 deletions

View File

@ -131,7 +131,6 @@ 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'];
@ -151,6 +150,8 @@ class lamUserList extends lamList {
}
}
}
if (isset($_POST['trans_primary'])) unset($_POST['trans_primary']);
parent::listDoPost();
}
/**