summaryrefslogtreecommitdiffstats
path: root/pages/Users:Password.xml
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2006-12-14 01:06:02 +0100
committerneoraider <devnull@localhost>2006-12-14 01:06:02 +0100
commit543336aef16562369c01992817f58e17144c9cad (patch)
treed49cd8549a836c740df7096ddcf7788ed7920c37 /pages/Users:Password.xml
parent93e1133ee88b03e7cae7318cb19761e698e57b86 (diff)
downloadneon-543336aef16562369c01992817f58e17144c9cad.tar
neon-543336aef16562369c01992817f58e17144c9cad.zip
Base-Type durch Subst-Erweiterungen unnoetig gemacht; Type-Konzept entfernt.
Diffstat (limited to 'pages/Users:Password.xml')
-rw-r--r--pages/Users:Password.xml32
1 files changed, 32 insertions, 0 deletions
diff --git a/pages/Users:Password.xml b/pages/Users:Password.xml
new file mode 100644
index 0000000..a83a068
--- /dev/null
+++ b/pages/Users:Password.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<page>
+ <info>
+ <name>Users:Password</name>
+ <template>phpexec</template>
+ <access>0:0</access>
+ </info>
+ <data>
+ <code>
+ <![CDATA[
+ <?PHP
+ Uses('user', 'links', 'util');
+
+
+ if($_POST['back']) {
+ header('Location: ' . $GLOBALS['links']->GetNeonLink('Users', null, false));
+ exit();
+ }
+
+ if(!$_POST['id'] || !$_POST['password'] || !$_POST['password2']) exit();
+
+ if($_POST['password'] != $_POST['password2']) exit();
+
+ $GLOBALS['user']->ChangePassword($_POST['id'], Unquote($_POST['password']));
+
+ header('Location: ' . $GLOBALS['links']->GetNeonLink('Users', null, false));
+ exit();
+ ?>
+ ]]>
+ </code>
+ </data>
+</page>