diff options
Diffstat (limited to 'actions/register.php')
-rw-r--r-- | actions/register.php | 10 |
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)) {
|