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