summaryrefslogtreecommitdiffstats
path: root/register.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2009-12-20 16:52:43 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2009-12-20 16:52:43 +0000
commitd8ea07a04acc03160ac73f5db2a9249890e5fd13 (patch)
tree63e0dfedbfc9565a265cb342da405cd79b4ff341 /register.php
parent69c56f829da3fc44e6dbcc14c364901b86f55421 (diff)
downloadampache-d8ea07a04acc03160ac73f5db2a9249890e5fd13.tar.gz
ampache-d8ea07a04acc03160ac73f5db2a9249890e5fd13.tar.bz2
ampache-d8ea07a04acc03160ac73f5db2a9249890e5fd13.zip
sync from 3.5.x and fix display issue on playlist view
Diffstat (limited to 'register.php')
-rw-r--r--register.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/register.php b/register.php
index bd90b1a2..73dbe87c 100644
--- a/register.php
+++ b/register.php
@@ -60,11 +60,11 @@ switch ($_REQUEST['action']) {
* possibly by logging them in right then and there with their current info
* and 'click here to login' would just be a link back to index.php
*/
- $fullname = scrub_in($_REQUEST['fullname']);
- $username = scrub_in($_REQUEST['username']);
- $email = scrub_in($_REQUEST['email']);
- $pass1 = scrub_in($_REQUEST['password_1']);
- $pass2 = scrub_in($_REQUEST['password_2']);
+ $fullname = scrub_in($_POST['fullname']);
+ $username = scrub_in($_POST['username']);
+ $email = scrub_in($_POST['email']);
+ $pass1 = scrub_in($_POST['password_1']);
+ $pass2 = scrub_in($_POST['password_2']);
/* If we're using the captcha stuff */
if (Config::get('captcha_public_reg')) {