summaryrefslogtreecommitdiffstats
path: root/application/modules/dev/forms/GroupAdd.php
diff options
context:
space:
mode:
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/"',
));
}