5b37fad630685705c04cf23ef8fdbac35bc7bbbc
[mailer.git] / inc / modules / guest / what-register.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 10/10/2003 *
4  * ===============                              Last change: 11/26/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-register.php                                *
8  * -------------------------------------------------------------------- *
9  * Short description : Registration form                                *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Anmeldeformular                                  *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
42         require($INC);
43 } elseif ((!EXT_IS_ACTIVE('register'))) {
44         addFatalMessage(__FILE__, __LINE__, generateExtensionInactiveNotInstalledMessage('register'));
45         return;
46 }
47
48 // Add description as navigation point
49 ADD_DESCR('guest', __FILE__);
50
51 global $DATA;
52
53 // Initialize variables
54 $isFailed   = false;
55 $shortPass = false;
56 $cats       = 0;
57 $ipTimedOut = false;
58
59 if (!isFormSent()) REQUEST_UNSET_POST('ok');
60
61 if (!REQUEST_ISSET_POST(('agree')))        REQUEST_SET_POST('agree'       , '');
62 if (!REQUEST_ISSET_POST(('addy')))         REQUEST_SET_POST('addy'        , '');
63 if (!REQUEST_ISSET_POST(('surname')))      REQUEST_SET_POST('surname'     , '');
64 if (!REQUEST_ISSET_POST(('family')))       REQUEST_SET_POST('family'      , '');
65 if (!REQUEST_ISSET_POST(('pass1')))        REQUEST_SET_POST('pass1'       , '');
66 if (!REQUEST_ISSET_POST(('pass2')))        REQUEST_SET_POST('pass2'       , '');
67 if (!REQUEST_ISSET_POST(('day')))          REQUEST_SET_POST('day'         , '');
68 if (!REQUEST_ISSET_POST(('month')))        REQUEST_SET_POST('month'       , '');
69 if (!REQUEST_ISSET_POST(('year')))         REQUEST_SET_POST('year'        , '');
70 if (!REQUEST_ISSET_POST(('max_mails')))    REQUEST_SET_POST('max_mails'   , '');
71 if (!REQUEST_ISSET_POST(('street_nr')))    REQUEST_SET_POST('street_nr'   , '');
72 if (!REQUEST_ISSET_POST('zip'))          REQUEST_SET_POST('zip'         , '');
73 if (!REQUEST_ISSET_POST(('city')))         REQUEST_SET_POST('city'        , '');
74 if (!REQUEST_ISSET_POST(('cntry')))        REQUEST_SET_POST('cntry'       , '');
75 if (!REQUEST_ISSET_POST(('country_code'))) REQUEST_SET_POST('country_code', '1');
76
77 // Default refid is zero
78 REQUEST_SET_POST('refid', 0);
79 if ($GLOBALS['refid'] > 0) {
80         // Test if the refid is valid
81         $result = SQL_QUERY_ESC("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1",
82         array(bigintval($GLOBALS['refid'])), __FILE__, __LINE__);
83
84         // Userid found?
85         //* DEBUG: */ die("refid={$GLOBALS['refid']}/numRows=".SQL_NUMROWS($result)."");
86         if (SQL_NUMROWS($result) == 0) {
87                 // Not found so we set your refid!
88                 REQUEST_SET_POST('refid', getConfig('def_refid'));
89                 setSession('refid', getConfig('def_refid'));
90         } else {
91                 // Use the refid here
92                 REQUEST_SET_POST('refid', $GLOBALS['refid']);
93         }
94 } // END - if
95
96 if (isFormSent()) {
97         // First we only check the submitted data then we continue... :)
98         //
99         // Did he agree to our Terms Of Usage?
100         if (REQUEST_POST('agree') != 'Y') {
101                 REQUEST_SET_POST('agree', '!');
102                 $isFailed = true;
103         } // END - if
104
105         // Did he enter a valid email address? (we really don't care about
106         // that, he has to click on a confirmation link :P )
107         if ((!REQUEST_ISSET_POST(('addy'))) || (!isEmailValid(REQUEST_POST('addy')))) {
108                 REQUEST_SET_POST('addy', '!');
109                 $isFailed = true;
110         } // END - if
111
112         // And what about surname and family's name?
113         if (!REQUEST_ISSET_POST(('surname'))) {
114                 REQUEST_SET_POST('surname', '!');
115                 $isFailed = true;
116         } // END - if
117         if (!REQUEST_ISSET_POST(('family'))) {
118                 REQUEST_SET_POST('family', '!');
119                 $isFailed = true;
120         } // END - if
121
122         // Check for required fields
123         if ($isFailed === false) $isFailed = REGISTER_CHECK_REQUIRED_FIELDS(REQUEST_POST_ARRAY());
124
125         // Did he enter his password twice?
126         if (((!REQUEST_ISSET_POST(('pass1'))) || (!REQUEST_ISSET_POST(('pass2')))) || ((REQUEST_POST('pass1') != REQUEST_POST('pass2')) && (REQUEST_ISSET_POST(('pass1'))) && (REQUEST_ISSET_POST(('pass2'))))) {
127                 if ((REQUEST_POST('pass1') != REQUEST_POST('pass2')) && (REQUEST_ISSET_POST(('pass1'))) && (REQUEST_ISSET_POST(('pass2')))) {
128                         REQUEST_SET_POST('pass1', '!');
129                         REQUEST_SET_POST('pass2', '!');
130                 } else {
131                         if (!REQUEST_ISSET_POST(('pass1'))) { REQUEST_SET_POST('pass1', '!'); } else { REQUEST_SET_POST('pass1', ''); }
132                         if (!REQUEST_ISSET_POST(('pass2'))) { REQUEST_SET_POST('pass2', '!'); } else { REQUEST_SET_POST('pass2', ''); }
133                 }
134                 $isFailed = true;
135         } // END - if
136
137         // Is the password long enouth?
138         if ((strlen(REQUEST_POST('pass1')) < getConfig('pass_len')) && ($isFailed === false)) {
139                 $shortPass = true;
140                 $isFailed = true;
141         } // END - if
142
143         // No admin? Admins can always register!
144         if (!IS_ADMIN()) {
145                 // Do this check only when no admin is logged in
146                 foreach (REQUEST_POST('cat') as $id => $answer) {
147                         if ($answer == 'Y') $cats++;
148                 } // END - foreach
149
150                 if ($cats < getConfig('least_cats')) {
151                         // ... nope!
152                         $isFailed = true;
153                 } // END - if
154         } // END - if
155
156         if ((REQUEST_POST('addy') != '!') && (getConfig('check_double_email') == 'Y')) {
157                 // Does the email address already exists in our database?
158                 $CHK = isEmailTaken(REQUEST_POST('addy'));
159                 if ($CHK === true) {
160                         REQUEST_SET_POST('addy', '?');
161                         $isFailed = true;
162                 } // END - if
163         } // END - if
164
165         // Check for IP timeout?
166         if (getConfig('ip_timeout') > 0) {
167                 // Check his IP number
168                 $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",
169                 array(detectRemoteAddr(), getConfig('ip_timeout'), getConfig('ip_timeout')), __FILE__, __LINE__);
170                 if (SQL_NUMROWS($result) == 1) {
171                         // Same IP in timeout range and different email address entered... Eat this, faker! ;-)
172                         // But admins are allowed to fake their own exchange service.
173                         $ipTimedOut = true;
174                         $isFailed = true;
175                 } // END - if
176         } // END - if
177
178         // Free memory
179         SQL_FREERESULT($result);
180 }
181
182 if ((isFormSent()) && (($isFailed === false) || (IS_ADMIN()))) {
183         // Prepapre month and day of birth
184         if (strlen(REQUEST_POST('day'))   == 1) REQUEST_SET_POST('day'  , '0'.REQUEST_POST('day'));
185         if (strlen(REQUEST_POST('month')) == 1) REQUEST_SET_POST('month', '0'.REQUEST_POST('month'));
186
187         // Get total ...
188         // ... confirmed, ...
189         $confirmedUsers   = GET_TOTAL_DATA('CONFIRMED'  , 'user_data', 'userid', 'status', true);
190         // ... unconfirmed ...
191         $unconfirmedUsers = GET_TOTAL_DATA('UNCONFIRMED', 'user_data', 'userid', 'status', true);
192         // ... and locked users!
193         $lockedUsers      = GET_TOTAL_DATA('LOCKED'     , 'user_data', 'userid', 'status', true);
194
195         // Generate hash which will be inserted into confirmation mail
196         $hash = generateHash(sha1($confirmedUsers.getConfig('ENCRYPT_SEPERATOR').$unconfirmedUsers.getConfig('ENCRYPT_SEPERATOR').$lockedUsers.getConfig('ENCRYPT_SEPERATOR').REQUEST_POST('month') . '-'.REQUEST_POST('day') . '-'.REQUEST_POST('year').getConfig('ENCRYPT_SEPERATOR').getenv('SERVER_NAME').getConfig('ENCRYPT_SEPERATOR').detectRemoteAddr().getConfig('ENCRYPT_SEPERATOR').detectUserAgent() . '/' . getConfig('SITE_KEY') . '/' . getConfig('DATE_KEY') . '/'. constant('RAND_NUMBER')));
197
198         // Add design when extension sql_patches is v0.2.7 or greater
199         // @TODO Rewrite these all to a single filter
200         $ADD1 = '';
201         $ADD2 = '';
202         if (GET_EXT_VERSION('theme') >= '0.0.8') {
203                 // Okay, add design here
204                 $ADD1 = ", `curr_theme`";
205                 $ADD2 = ", '".getCurrentTheme()."'";
206         } // END - if
207
208         // Check if I shall disable sending mail to newly registered members out about active/begging rallye
209         //
210         // First comes first: begging rallye
211         if (GET_EXT_VERSION('beg') >= '0.1.7') {
212                 // Okay, shall I disable now?
213                 if (getConfig('beg_new_mem_notify') != 'Y') {
214                         $ADD1 .= ", `beg_ral_notify`, `beg_ral_en_notify`";
215                         $ADD2 .= ", UNIX_TIMESTAMP(), UNIX_TIMESTAMP()";
216                 } // END - if
217         } // END - if
218
219         // Second: active rallye
220         if (GET_EXT_VERSION('bonus') >= '0.7.7') {
221                 // Okay, shall I disable now?
222                 if (getConfig('bonus_new_mem_notify') != 'Y') {
223                         $ADD1 .= ", `bonus_ral_notify`, `bonus_ral_en_notify`";
224                         $ADD2 .= ", UNIX_TIMESTAMP(), UNIX_TIMESTAMP()";
225                 } // END - if
226         } // END - if
227
228         // Write user data to table
229         if (EXT_IS_ACTIVE('country')) {
230                 // Save with new selectable country code
231                 $countryRow = "`country_code`";
232                 $countryData = bigintval(REQUEST_POST('country_code'));
233         } else {
234                 // Old way with enterable two-char-code
235                 $countryRow = "`country`";
236                 $countryData = substr(REQUEST_POST('cntry'), 0, 2);
237         }
238
239         //////////////////////////////
240         // Create user's account... //
241         //////////////////////////////
242         //
243         SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_user_data` (gender, surname, family, street_nr,%s, zip, city, email, birth_day, birth_month, birth_year, password, max_mails, receive_mails, refid, status, user_hash, REMOTE_ADDR, joined, last_update".$ADD1.")
244 VALUES ('%s','%s','%s','%s','%s',%s,'%s','%s',%s, %s,%s,'%s',%s, %s,'%s','UNCONFIRMED','%s','%s', UNIX_TIMESTAMP(), UNIX_TIMESTAMP()".$ADD2.")",
245         array(
246                 $countryRow,
247                 substr(REQUEST_POST('gender'), 0, 1),
248                 REQUEST_POST('surname'),
249                 REQUEST_POST('family'),
250                 REQUEST_POST('street_nr'),
251                 $countryData,
252                 bigintval(REQUEST_POST('zip')),
253                 REQUEST_POST('city'),
254                 REQUEST_POST('addy'),
255                 bigintval(REQUEST_POST('day')),
256                 bigintval(REQUEST_POST('month')),
257                 bigintval(REQUEST_POST('year')),
258                 generateHash(REQUEST_POST('pass1')),
259                 bigintval(REQUEST_POST('max_mails')),
260                 bigintval(REQUEST_POST('max_mails')),
261                 bigintval(REQUEST_POST('refid')),
262                 $hash,
263                 detectRemoteAddr(),
264         ), __FILE__, __LINE__);
265
266         // Get his userid
267         $userid = SQL_INSERTID();
268
269         // Did this work?
270         if ($userid == 0) {
271                 // Something bad happened!
272                 LOAD_TEMPLATE('admin_settings_saved', false, getMessage('USER_NOT_REGISTERED'));
273                 return;
274         } // END - if
275
276         // Is the refback extension there?
277         // @TODO Rewrite this to a filter
278         if (EXT_IS_ACTIVE('refback')) {
279                 // Update refback table
280                 updateRefbackTable($userid);
281         } // END - if
282
283         // Write his welcome-points
284         $result = SQL_QUERY_ESC("SELECT `id` FROM `{!_MYSQL_PREFIX!}_user_points` WHERE userid=%s AND ref_depth=0 LIMIT 1",
285         array(bigintval($userid)), __FILE__, __LINE__);
286         if (SQL_NUMROWS($result) == 0) {
287                 // Add only when the line was not found (maybe some more secure?)
288                 $locked = "points";
289                 if (getConfig('ref_payout') > 0) $locked = "locked_points"; // Pay him later. First he has to confirm some mails!
290                 SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_user_points` (userid, ref_depth, ".$locked.") VALUES (%s,0,'%s')",
291                 array(bigintval($userid), getConfig('points_register')), __FILE__, __LINE__);
292
293                 // Update mediadata as well
294                 if ((GET_EXT_VERSION('mediadata') >= '0.0.4') && ($locked == "points")) {
295                         // Update database
296                         MEDIA_UPDATE_ENTRY(array('total_points'), 'add', getConfig('points_register'));
297                 } // END - if
298         } // END - if
299
300         // Write catgories
301         if ((is_array(REQUEST_POST('cat'))) && (count(REQUEST_POST('cat')))) {
302                 foreach (REQUEST_POST('cat') as $cat => $joined) {
303                         if ($joined == 'Y') {
304                                 // Insert category entry
305                                 SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_user_cats` (userid, cat_id) VALUES (%s, %s)",
306                                 array(bigintval($userid), bigintval($cat)), __FILE__, __LINE__);
307                         } // END - if
308                 } // END - foreach
309         } // END - if
310
311         // Rewrite gender
312         $gender = translateGender(REQUEST_POST('gender'));
313
314         // ... rewrite a zero referal ID to the main title
315         if (REQUEST_POST('refid') == '0') REQUEST_SET_POST('refid', constant('MAIN_TITLE'));
316
317         // Is ZIP code set?
318         if (REQUEST_ISSET_POST('zip')) {
319                 // Prepare data array for the email template
320                 // Start with the gender...
321                 $DATA = array(
322                         'hash'    => $hash,
323                         'uid'     => $userid,
324                         'gender'  => $gender,
325                         'surname' => SQL_ESCAPE(REQUEST_POST('surname')),
326                         'family'  => SQL_ESCAPE(REQUEST_POST('family')),
327                         'email'   => SQL_ESCAPE(REQUEST_POST('addy')),
328                         'street'  => SQL_ESCAPE(REQUEST_POST('street_nr')),
329                         'city'    => SQL_ESCAPE(REQUEST_POST('city')),
330                         'zip'     => bigintval(REQUEST_POST('zip')),
331                         'country' => $countryData,
332                         'refid'   => SQL_ESCAPE(REQUEST_POST('refid')),
333                         'pass'    => SQL_ESCAPE(REQUEST_POST('pass1')),
334                 );
335         } else {
336                 // No ZIP code entered
337                 $DATA = array(
338                         'hash'    => $hash,
339                         'uid'     => $userid,
340                         'gender'  => $gender,
341                         'surname' => SQL_ESCAPE(REQUEST_POST('surname')),
342                         'family'  => SQL_ESCAPE(REQUEST_POST('family')),
343                         'email'   => SQL_ESCAPE(REQUEST_POST('addy')),
344                         'street'  => SQL_ESCAPE(REQUEST_POST('street_nr')),
345                         'city'    => SQL_ESCAPE(REQUEST_POST('city')),
346                         'zip'     => "",
347                         'country' => $countryData,
348                         'refid'   => SQL_ESCAPE(REQUEST_POST('refid')),
349                         'pass'    => SQL_ESCAPE(REQUEST_POST('pass1')),
350                 );
351         }
352
353         // Continue with birthday...
354         switch (getLanguage()) {
355                 case 'de':
356                         $DATA['birthday'] = bigintval(REQUEST_POST('day')) . '.' . bigintval(REQUEST_POST('month')) . '.' . bigintval(REQUEST_POST('year'));
357                         break;
358
359                 default:
360                         $DATA['birthday'] = bigintval(REQUEST_POST('month')) . '/' . bigintval(REQUEST_POST('day')) . '/' . bigintval(REQUEST_POST('year'));
361                         break;
362         } // END - switch
363
364         // Display information to the user that he got mail and send it away
365         $messageGuest = LOAD_EMAIL_TEMPLATE('register-member', $DATA, $userid);
366
367         // Send mail to user (confirmation link!)
368         $email = $DATA['email'];
369         sendEmail($DATA['email'], getMessage('GUEST_CONFIRM_LINK'), $messageGuest);
370         $DATA['email'] = $email;
371
372         // Send mail to admin
373         sendAdminNotification(getMessage('ADMIN_NEW_ACCOUNT'), 'register-admin', $DATA, $userid);
374
375         // Output success registration
376         LOAD_TEMPLATE('admin_settings_saved', false, getMessage('REGISTRATION_DONE'));
377 } else {
378         if (REQUEST_POST('agree') == '!') {
379                 registerOutputFailedMessage('HAVE_TO_AGREE');
380         } // END - if
381
382         if (REQUEST_POST('addy') == '!') {
383                 registerOutputFailedMessage('ENTER_EMAIL');
384                 REQUEST_SET_POST('addy', '');
385         } elseif (REQUEST_POST('addy') == '?') {
386                 registerOutputFailedMessage('EMAIL_ALREADY_DB');
387                 REQUEST_SET_POST('addy', '');
388         }
389
390         if (REQUEST_POST('surname') == '!') {
391                 registerOutputFailedMessage('ENTER_SURNAME');
392                 REQUEST_SET_POST('surname', '');
393         } // END - if
394
395         if (REQUEST_POST('family') == '!') {
396                 registerOutputFailedMessage('ENTER_FAMILY');
397                 REQUEST_SET_POST('family', '');
398         } // END - if
399
400         if ((REQUEST_POST('pass1') == '!') && (REQUEST_POST('pass2') == '!')) {
401                 registerOutputFailedMessage('ENTER_BOTH_PASSWORDS');
402         } elseif (REQUEST_POST('pass1') == '!') {
403                 registerOutputFailedMessage('ENTER_PASS1');
404         } elseif (REQUEST_POST('pass2') == '!') {
405                 registerOutputFailedMessage('ENTER_PASS2');
406         }
407
408         if ($shortPass === true) {
409                 registerOutputFailedMessage('SHORT_PASS', ": ".getConfig('pass_len'));
410         } // END - if
411
412         if ($ipTimedOut === true) {
413                 registerOutputFailedMessage('REMOTE_ADDR_TIMEOUT');
414         } // END - if
415
416         if ((!empty($cats)) && ($cats < getConfig('least_cats'))) {
417                 registerOutputFailedMessage(sprintf(getMessage('CATS_LEAST'), getConfig('least_cats')));
418         } // END - if
419
420         // Generate birthday selection
421         switch (getLanguage()) {
422                 case 'de': // German date format
423                         define('BIRTHDAY_SELECTION', ADD_SELECTION('day', REQUEST_POST('day')).ADD_SELECTION('month', REQUEST_POST('month')).ADD_SELECTION('year', REQUEST_POST('year')));
424                         break;
425
426                 default: // Default is the US date format... :)
427                         define('BIRTHDAY_SELECTION', ADD_SELECTION('month', REQUEST_POST('month')).ADD_SELECTION('day', REQUEST_POST('day')).ADD_SELECTION('year', REQUEST_POST('year')));
428                         break;
429         }
430
431         // Adds a table for the guests with all visible categories
432         define('CATEGORY_SELECTION', registerGenerateCategoryTable('guest', true));
433
434         // Adds maximum receiveable mails list... :)
435         define('MAX_RECEIVE_LIST', addMaxReceiveList('guest', '', true));
436
437         // Shall I display the refid or shall I make it editable?
438         if (getConfig('display_refid') == 'Y') {
439                 // Load "hide" form template
440                 define('REFID_CONTENT', LOAD_TEMPLATE('guest_register_refid_hide', true, $GLOBALS['refid']));
441         } else {
442                 // Load template to enter it
443                 define('REFID_CONTENT', LOAD_TEMPLATE('guest_register_refid', true, $GLOBALS['refid']));
444         }
445
446         // You may want to modify the register_header.tpl.xx file and not this script when you add your scripts etc. :-)
447         define('REGISTER_HEADER_CONTENT', LOAD_TEMPLATE('register_header', true));
448
449         // Please select at least x categories
450         define('LEAST_CATS_VALUE', getConfig('least_cats'));
451
452         // Other values
453         define('__SURNAME', SQL_ESCAPE(REQUEST_POST('surname')));
454         define('__FAMILY',  SQL_ESCAPE(REQUEST_POST('family')));
455         define('__STREET',  SQL_ESCAPE(REQUEST_POST('street_nr')));
456         define('__COUNTRY', SQL_ESCAPE(REQUEST_POST('cntry')));
457         if ((REQUEST_ISSET_POST('zip')) && (REQUEST_POST('zip') != '')) {
458                 define('__ZIP', bigintval(REQUEST_POST('zip')));
459         } else {
460                 define('__ZIP', '');
461         }
462         define('__CITY',    SQL_ESCAPE(REQUEST_POST('city')));
463         define('__ADDY',    SQL_ESCAPE(REQUEST_POST('addy')));
464
465         // Shall I add a counrty selection box or the old input box?
466         if (EXT_IS_ACTIVE('country')) {
467                 // New variant, good!
468                 $OUT  = "<select name=\"country_code\" class=\"guest_select\" size=\"1\">\n";
469                 $whereStatement = "WHERE `is_active`='Y'";
470                 if (IS_ADMIN()) $whereStatement = '';
471                 $OUT .= generateOptionList('countries', 'id', 'descr', REQUEST_POST('country_code'), 'code', $whereStatement);
472                 $OUT .= "</select>";
473                 define('__COUNTRY_CONTENT', $OUT);
474         } else {
475                 // Old out-dated variant
476                 define('__COUNTRY_CONTENT', "<input type=\"text\" name=\"cntry\" class=\"guest_normal\" size=\"2\" maxlength=\"3\" value=\"{!__COUNTRY!}\" />");
477         }
478
479         // Set MUST_??? constants
480         if ((EXT_IS_ACTIVE('register')) && (GET_EXT_VERSION('register') > '0.0')) registerMustFillout();
481
482         // Display registration form
483         LOAD_TEMPLATE('guest_register');
484 }
485
486 //
487 ?>