From 8aad9f081b9fd83f8cd8358547234fbdcdaf9611 Mon Sep 17 00:00:00 2001 From: Brett Profitt Date: Wed, 18 Apr 2012 20:22:54 -0700 Subject: Fixes #1301. Not filtering passwords. --- actions/useradd.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'actions/useradd.php') diff --git a/actions/useradd.php b/actions/useradd.php index fdcd7e438..17459021b 100644 --- a/actions/useradd.php +++ b/actions/useradd.php @@ -10,8 +10,8 @@ elgg_make_sticky_form('useradd'); // Get variables $username = get_input('username'); -$password = get_input('password'); -$password2 = get_input('password2'); +$password = get_input('password', null, false); +$password2 = get_input('password2', null, false); $email = get_input('email'); $name = get_input('name'); -- cgit v1.2.3