summaryrefslogtreecommitdiffstats
path: root/pages/content/Users:Group.xml
diff options
context:
space:
mode:
Diffstat (limited to 'pages/content/Users:Group.xml')
-rw-r--r--pages/content/Users:Group.xml31
1 files changed, 0 insertions, 31 deletions
diff --git a/pages/content/Users:Group.xml b/pages/content/Users:Group.xml
deleted file mode 100644
index 4a4b004..0000000
--- a/pages/content/Users:Group.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<page>
- <info>
- <name>Users:Group</name>
- <template>phpexec</template>
- <access>0:0</access>
- <type>c</type>
- </info>
- <data>
- <code>
- <![CDATA[
- <?PHP
- Uses('user', 'links');
-
-
- if($_POST['back']) {
- header('Location: ' . $GLOBALS['links']->GetNeonLink('Users', null, false));
- exit();
- }
-
- if(!isset($_POST['id']) || !isset($_POST['gid'])) exit();
-
- $GLOBALS['user']->ChangeGroup($_POST['id'], $_POST['gid']);
-
- header('Location: ' . $GLOBALS['links']->GetNeonLink('Users', null, false));
- exit();
- ?>
- ]]>
- </code>
- </data>
-</page>