aboutsummaryrefslogtreecommitdiff
path: root/actions/register.php
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-04-01 15:01:50 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-04-01 15:01:50 +0000
commit65c9c360797e4788adba8455834897acedfb6b8e (patch)
tree74186b67aa639ed13fd4100f0695230940d121a7 /actions/register.php
parentb2c2318dc8dfb0a02c74fb4d35ed71fbf3dc31ab (diff)
downloadelgg-65c9c360797e4788adba8455834897acedfb6b8e.tar.gz
elgg-65c9c360797e4788adba8455834897acedfb6b8e.tar.bz2
Registration, login, logout work. Victory!
git-svn-id: https://code.elgg.org/elgg/trunk@313 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/register.php')
-rw-r--r--actions/register.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/actions/register.php b/actions/register.php
index 2e8c5b414..a2f434a73 100644
--- a/actions/register.php
+++ b/actions/register.php
@@ -12,11 +12,11 @@
*/
// Get variables
- $username = get_input($username);
- $password = get_input($password);
- $password2 = get_input($password2);
- $email = get_input($email);
- $name = get_input($name);
+ $username = get_input('username');
+ $password = get_input('password');
+ $password2 = get_input('password2');
+ $email = get_input('email');
+ $name = get_input('name');
// For now, just try and register the user
if (register_user($username, $password, $name, $email)) {