summaryrefslogtreecommitdiffstats
path: root/application/modules/dev/views/scripts/group/edit.phtml
blob: a0f9b32876c93077571eccb4004709120323a9f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
<?php
if(isset($this->addForm)) {
	$this->addForm->setAction('/dev/group/add');
	echo $this->addForm;
}
else {
	$this->editForm->setAction($this->url());
	echo $this->editForm;
}
?>