summaryrefslogtreecommitdiffstats
path: root/application/modules/user/forms/Bootos.php
diff options
context:
space:
mode:
authormichael pereira2011-04-01 13:57:24 +0200
committermichael pereira2011-04-01 13:57:24 +0200
commit1fb3a11a72f1d27aba069a9b5d4cf88d1daf30d0 (patch)
tree36680922a92f94715ef26b80f4021de1b0ef18a9 /application/modules/user/forms/Bootos.php
parentMerge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2 (diff)
parentpagination in Bootos & Bootiso (diff)
downloadpbs2-1fb3a11a72f1d27aba069a9b5d4cf88d1daf30d0.tar.gz
pbs2-1fb3a11a72f1d27aba069a9b5d4cf88d1daf30d0.tar.xz
pbs2-1fb3a11a72f1d27aba069a9b5d4cf88d1daf30d0.zip
Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2
Diffstat (limited to 'application/modules/user/forms/Bootos.php')
-rw-r--r--application/modules/user/forms/Bootos.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/application/modules/user/forms/Bootos.php b/application/modules/user/forms/Bootos.php
index 5fa890a..3e45f05 100644
--- a/application/modules/user/forms/Bootos.php
+++ b/application/modules/user/forms/Bootos.php
@@ -7,6 +7,7 @@ class user_Form_Bootos extends Zend_Form
private $action;
private $rights;
private $groupdepth;
+ private $page;
public function setRights($rights){
$this->rights = $rights;
@@ -22,6 +23,9 @@ class user_Form_Bootos extends Zend_Form
public function setGroupdepth($groupdepth){
$this->groupdepth = $groupdepth;
}
+ public function setPage($page){
+ $this->page = $page;
+ }
public function init()
{
@@ -139,7 +143,7 @@ class user_Form_Bootos extends Zend_Form
));
$this->addElement('button', 'Cancel', array(
- 'onclick' => 'self.location="/user/bootos"'
+ 'onclick' => 'self.location="/user/bootos/page/'.$this->page.'"'
));
?>