From 325bb973c136c921d0c36384ca9655aa7744283e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Thu, 17 Dec 2009 22:07:27 +0000 Subject: [PATCH] Fix for registration, logic went wrong... --- inc/libs/register_functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/libs/register_functions.php b/inc/libs/register_functions.php index 7cf34d913e..817cc3f3dd 100644 --- a/inc/libs/register_functions.php +++ b/inc/libs/register_functions.php @@ -227,7 +227,7 @@ function isRegistrationDataComplete () { } // END - foreach // Enougth categories selected? - $isOkay = (($isOkay) && ($GLOBALS['register_selected_cats'] < getConfig('least_cats'))); + $isOkay = (($isOkay) && ($GLOBALS['register_selected_cats'] >= getConfig('least_cats'))); if ((postRequestParameter('email') != '!') && (getConfig('check_double_email') == 'Y')) { // Does the email address already exists in our database? -- 2.39.2