if ($_POST['agree'] != "Y") {
$_POST['agree'] = "!";
$FAILED = true;
- }
+ } // END - if
// Did he enter a valid email address? (we really don't care about
// that, he has to click on a confirmation link :P )
if ((empty($_POST['addy'])) || (!VALIDATE_EMAIL($_POST['addy']))) {
$_POST['addy'] = "!";
$FAILED = true;
- }
+ } // END - if
// And what about surname and family's name?
if (empty($_POST['surname'])) {
$_POST['surname'] = "!";
$FAILED = true;
- }
+ } // END - if
if (empty($_POST['family_name'])) {
$_POST['family_name'] = "!";
$FAILED = true;
- }
+ } // END - if
// Check for required fields
if (!$FAILED) $FAILED = REGISTER_CHECK_REQUIRED_FIELDS($_POST);
// Did he enter his password twice?
- if (((empty($_POST['pass1'])) || (empty($_POST['pass2']))) || (($_POST['pass1'] != $_POST['pass2']) && (!empty($_POST['pass1'])) && (!empty($_POST['pass2']))))
- {
- if (($_POST['pass1'] != $_POST['pass2']) && (!empty($_POST['pass1'])) && (!empty($_POST['pass2'])))
- {
+ if (((empty($_POST['pass1'])) || (empty($_POST['pass2']))) || (($_POST['pass1'] != $_POST['pass2']) && (!empty($_POST['pass1'])) && (!empty($_POST['pass2'])))) {
+ if (($_POST['pass1'] != $_POST['pass2']) && (!empty($_POST['pass1'])) && (!empty($_POST['pass2']))) {
$_POST['pass1'] = "!";
$_POST['pass2'] = "!";
- }
- else
- {
+ } else {
if (empty($_POST['pass1'])) { $_POST['pass1'] = "!"; } else { $_POST['pass1'] = ""; }
if (empty($_POST['pass2'])) { $_POST['pass2'] = "!"; } else { $_POST['pass2'] = ""; }
}
$FAILED = true;
- }
+ } // END - if
+
// Is the password long enouth?
- if ((strlen($_POST['pass1']) < $_CONFIG['pass_len']) && (!$FAILED) && (!IS_ADMIN()))
- {
+ if ((strlen($_POST['pass1']) < $_CONFIG['pass_len']) && (!$FAILED)) {
$SHORT_PASS = true;
$FAILED = true;
- }
- // Did he select enougth categories?
- if (!IS_ADMIN())
- {
+ } // END - if
+
+ // No admin? Admins can always register!
+ if (!IS_ADMIN()) {
// Do this check only when no admin is logged in
- foreach ($_POST['cat'] as $id => $answer)
- {
+ foreach ($_POST['cat'] as $id => $answer) {
if ($answer == "Y") $cats++;
- }
- if ($cats < $_CONFIG['least_cats'])
- {
+ } // END - foreach
+
+ if ($cats < $_CONFIG['least_cats']) {
// ... nope!
$FAILED = true;
- }
- }
- if (($_POST['addy'] != "!") && ($_CONFIG['check_double_email'] == "Y") && (!IS_ADMIN()))
- {
+ } // END - if
+ } // END - if
+
+ if (($_POST['addy'] != "!") && ($_CONFIG['check_double_email'] == "Y")) {
// Does the email address already exists in our database?
$CHK = SEARCH_EMAIL_USERTAB($_POST['addy']);
if ($CHK) { $_POST['addy'] = "?"; $FAILED = true; }
- }
+ } // END - if
- // Check his IP number
- $result = SQL_QUERY_ESC("SELECT joined, last_update FROM "._MYSQL_PREFIX."_user_data WHERE REMOTE_ADDR='%s' AND (joined > (UNIX_TIMESTAMP() - %s) OR last_update > (UNIX_TIMESTAMP() - %s)) LIMIT 1",
- array(GET_REMOTE_ADDR(), $_CONFIG['ip_timeout'], $_CONFIG['ip_timeout']), __FILE__, __LINE__);
- if ((SQL_NUMROWS($result) == 1) && (!IS_ADMIN()))
- {
- // Same IP in timeout range and different email address entered... Eat this, faker! ;-)
- // But admins are allowed to fake their own exchange service.
- $IP_TIMEOUT = true;
- $FAILED = true;
- }
+ // Check for IP timeout?
+ if ($_CONFIG['ip_timeout'] > 0) {
+ // Check his IP number
+ $result = SQL_QUERY_ESC("SELECT joined, last_update FROM "._MYSQL_PREFIX."_user_data WHERE REMOTE_ADDR='%s' AND (joined > (UNIX_TIMESTAMP() - %s) OR last_update > (UNIX_TIMESTAMP() - %s)) LIMIT 1",
+ array(GET_REMOTE_ADDR(), $_CONFIG['ip_timeout'], $_CONFIG['ip_timeout']), __FILE__, __LINE__);
+ if (SQL_NUMROWS($result) == 1) {
+ // Same IP in timeout range and different email address entered... Eat this, faker! ;-)
+ // But admins are allowed to fake their own exchange service.
+ $IP_TIMEOUT = true;
+ $FAILED = true;
+ } // END - if
+ } // END - if
// Free memory
SQL_FREERESULT($result);
}
-if ((isset($_POST['ok'])) && (!$FAILED)) {
+if ((isset($_POST['ok'])) && ((!$FAILED) || (IS_ADMIN()))) {
// Prepapre month and day of birth
if (strlen($_POST['day']) == 1) $_POST['day'] = "0".$_POST['day'];
if (strlen($_POST['month']) == 1) $_POST['month'] = "0".$_POST['month'];
// ... rewrite a zero referal ID to the main title
if ($_POST['refid'] == "0") $_POST['refid'] = MAIN_TITLE;
- // Prepare data array for the email template
- // Start with the gender...
- $DATA = array(
- 'hash' => $hash,
- 'uid' => $userid,
- 'gender' => $gender,
- 'surname' => SQL_ESCAPE($_POST['surname']),
- 'family' => SQL_ESCAPE($_POST['family_name']),
- 'email' => SQL_ESCAPE($_POST['addy']),
- 'street' => SQL_ESCAPE($_POST['street_nr']),
- 'city' => SQL_ESCAPE($_POST['city']),
- 'zip' => bigintval($_POST['zip']),
- 'country' => $countryData,
- 'refid' => SQL_ESCAPE($_POST['refid']),
- 'pass' => SQL_ESCAPE($_POST['pass1']),
- );
+ // Is ZIP code set?
+ if (!empty($_POST['zip'])) {
+ // Prepare data array for the email template
+ // Start with the gender...
+ $DATA = array(
+ 'hash' => $hash,
+ 'uid' => $userid,
+ 'gender' => $gender,
+ 'surname' => SQL_ESCAPE($_POST['surname']),
+ 'family' => SQL_ESCAPE($_POST['family_name']),
+ 'email' => SQL_ESCAPE($_POST['addy']),
+ 'street' => SQL_ESCAPE($_POST['street_nr']),
+ 'city' => SQL_ESCAPE($_POST['city']),
+ 'zip' => bigintval($_POST['zip']),
+ 'country' => $countryData,
+ 'refid' => SQL_ESCAPE($_POST['refid']),
+ 'pass' => SQL_ESCAPE($_POST['pass1']),
+ );
+ } else {
+ // No ZIP code entered
+ $DATA = array(
+ 'hash' => $hash,
+ 'uid' => $userid,
+ 'gender' => $gender,
+ 'surname' => SQL_ESCAPE($_POST['surname']),
+ 'family' => SQL_ESCAPE($_POST['family_name']),
+ 'email' => SQL_ESCAPE($_POST['addy']),
+ 'street' => SQL_ESCAPE($_POST['street_nr']),
+ 'city' => SQL_ESCAPE($_POST['city']),
+ 'zip' => "",
+ 'country' => $countryData,
+ 'refid' => SQL_ESCAPE($_POST['refid']),
+ 'pass' => SQL_ESCAPE($_POST['pass1']),
+ );
+ }
// Continue with birthday...
switch (GET_LANGUAGE())