summaryrefslogtreecommitdiffstats
path: root/application/modules/dev/views/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'application/modules/dev/views/scripts')
-rw-r--r--application/modules/dev/views/scripts/group/edit.phtml4
-rw-r--r--application/modules/dev/views/scripts/group/index.phtml2
-rw-r--r--application/modules/dev/views/scripts/group/show.phtml10
3 files changed, 8 insertions, 8 deletions
diff --git a/application/modules/dev/views/scripts/group/edit.phtml b/application/modules/dev/views/scripts/group/edit.phtml
index 64dde9d..dd3acbe 100644
--- a/application/modules/dev/views/scripts/group/edit.phtml
+++ b/application/modules/dev/views/scripts/group/edit.phtml
@@ -1,10 +1,10 @@
<?php
if(isset($this->addForm)) {
- $this->addForm->setAction('/group/add');
+ $this->addForm->setAction('/etc/group/add');
echo $this->addForm;
}
else {
$this->editForm->setAction($this->url());
echo $this->editForm;
}
-?> \ No newline at end of file
+?>
diff --git a/application/modules/dev/views/scripts/group/index.phtml b/application/modules/dev/views/scripts/group/index.phtml
index d1faf04..714498e 100644
--- a/application/modules/dev/views/scripts/group/index.phtml
+++ b/application/modules/dev/views/scripts/group/index.phtml
@@ -10,7 +10,7 @@
<tr>
<td><?php echo $group->getTitle(); ?></td>
<td>
- <form name="show<?php echo $count; ?>" action="/group/show"
+ <form name="show<?php echo $count; ?>" action="/dev/group/show"
method="post"><input type="hidden" name="groupID"
value="<?php echo $group->getID(); ?>" /><a
href="javascript:document.show<?php echo $count; ?>.submit();">Details</a></form>
diff --git a/application/modules/dev/views/scripts/group/show.phtml b/application/modules/dev/views/scripts/group/show.phtml
index addf3db..7b3660d 100644
--- a/application/modules/dev/views/scripts/group/show.phtml
+++ b/application/modules/dev/views/scripts/group/show.phtml
@@ -2,11 +2,11 @@
if($_POST['groupID']) {
?>
<div align="right">
-<form name="editForm" action="/group/edit/" method="post"><input
+<form name="editForm" action="/dev/group/edit/" method="post"><input
type="hidden" name="groupID"
value="<?php echo $this->group->getID(); ?>" /> <input type="submit"
name="edit" value="Edit" /></form>
-<form name="deleteForm" action="/group/delete/" method="post"><input
+<form name="deleteForm" action="/dev/group/delete/" method="post"><input
type="hidden" name="groupID"
value="<?php echo $this->group->getID(); ?>" /> <input type="submit"
name="delete" value="Delete" /></form>
@@ -56,7 +56,7 @@ if($_POST['groupID']) {
<td><?php echo $person->getEmail(); ?></td>
<td><?php echo $person->getCity(); ?></td>
<td>
- <form action="/group/grantperson" method="post"><input type="hidden"
+ <form action="/dev/group/grantperson" method="post"><input type="hidden"
name="grouprequestID" value="<?php echo $grouprequestID; ?>" /> <?php printRoleSelect($this->roleList); ?>
<input type="submit" name="confirm" value="confirm" /></form>
</td>
@@ -92,7 +92,7 @@ if($_POST['groupID']) {
<td><?php echo $person->getEmail(); ?></td>
<td><?php echo $person->getCity(); ?></td>
<td>
- <form action="/group/revokeperson" method="post"><input type="hidden"
+ <form action="/dev/group/revokeperson" method="post"><input type="hidden"
name="membershipID" value="<?php echo $membershipID; ?>" /><input
type="hidden" name="personID" value="<?php echo $person->getID(); ?>" />
<input type="submit" name="revoke" value="revoke" /></form>
@@ -119,4 +119,4 @@ function printRoleSelect($roleList) {
echo "<option value=\"" . $role['roleID'] . "\">" . $role['title'] . "</option>";
}
echo "</select>";
-} \ No newline at end of file
+}