blob: dd3acbec5cd25628d6c4fd62eb2fb2282a183e60 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
<?php
if(isset($this->addForm)) {
$this->addForm->setAction('/etc/group/add');
echo $this->addForm;
}
else {
$this->editForm->setAction($this->url());
echo $this->editForm;
}
?>
|