summaryrefslogtreecommitdiffstats
path: root/application/modules/dev/forms/GroupAdd.php
diff options
context:
space:
mode:
authorBjörn Geiger2011-03-23 19:31:03 +0100
committerBjörn Geiger2011-03-23 19:31:03 +0100
commitf581446f90526dd3466becddd625d23bd1c26ed4 (patch)
tree22b5708100e6c71e7cbd3a567527dcfc013fca91 /application/modules/dev/forms/GroupAdd.php
parentseriel liegt jetzt im root/ (diff)
downloadpbs2-f581446f90526dd3466becddd625d23bd1c26ed4.tar.gz
pbs2-f581446f90526dd3466becddd625d23bd1c26ed4.tar.xz
pbs2-f581446f90526dd3466becddd625d23bd1c26ed4.zip
Rollenverwaltung in Dev Modul
Diffstat (limited to 'application/modules/dev/forms/GroupAdd.php')
-rw-r--r--application/modules/dev/forms/GroupAdd.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/application/modules/dev/forms/GroupAdd.php b/application/modules/dev/forms/GroupAdd.php
index f7636e7..a235b56 100644
--- a/application/modules/dev/forms/GroupAdd.php
+++ b/application/modules/dev/forms/GroupAdd.php
@@ -37,7 +37,7 @@ class dev_Form_GroupAdd extends Zend_Form
$groupfield ->setLabel('superordinated Group:');
$groupfield->addMultiOption('-1', '---- none ----');
-
+
if(count($this->grouplist)>0){
foreach($this->grouplist as $group => $g){
$groupfield->addMultiOption($g->getID(), $g->getTitle());
@@ -56,7 +56,7 @@ class dev_Form_GroupAdd extends Zend_Form
'required' => false,
'ignore' => true,
'label' => 'Cancel',
- 'onclick' => 'location.href="/group/show"',
+ 'onclick' => 'location.href="/dev/group/"',
));
}