aboutsummaryrefslogtreecommitdiff
path: root/actions/register.php
diff options
context:
space:
mode:
Diffstat (limited to 'actions/register.php')
-rw-r--r--actions/register.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/actions/register.php b/actions/register.php
index a2f434a73..dd573aa77 100644
--- a/actions/register.php
+++ b/actions/register.php
@@ -19,7 +19,13 @@
$name = get_input('name');
// For now, just try and register the user
- if (register_user($username, $password, $name, $email)) {
+ if (
+ (
+ (trim($password)!="") &&
+ (strcmp($password, $password2)==0)
+ ) &&
+ (register_user($username, $password, $name, $email))
+ ) {
system_message(sprintf(elgg_echo("registerok"),$CONFIG->sitename));
} else {
system_message(elgg_echo("registerbad"));