Damn typo fixed... ;-)
[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__, getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), "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 $FAILED = false; $SHORT_PASS = false; $cats = 0; $IP_TIMEOUT = false;
55
56 if (!IS_FORM_SENT()) REQUEST_UNSET_POST('ok');
57
58 if (!REQUEST_ISSET_POST(('agree')))        REQUEST_SET_POST('agree'       , "");
59 if (!REQUEST_ISSET_POST(('addy')))         REQUEST_SET_POST('addy'        , "");
60 if (!REQUEST_ISSET_POST(('surname')))      REQUEST_SET_POST('surname'     , "");
61 if (!REQUEST_ISSET_POST(('family')))       REQUEST_SET_POST('family'      , "");
62 if (!REQUEST_ISSET_POST(('pass1')))        REQUEST_SET_POST('pass1'       , "");
63 if (!REQUEST_ISSET_POST(('pass2')))        REQUEST_SET_POST('pass2'       , "");
64 if (!REQUEST_ISSET_POST(('day')))          REQUEST_SET_POST('day'         , "");
65 if (!REQUEST_ISSET_POST(('month')))        REQUEST_SET_POST('month'       , "");
66 if (!REQUEST_ISSET_POST(('year')))         REQUEST_SET_POST('year'        , "");
67 if (!REQUEST_ISSET_POST(('max_mails')))    REQUEST_SET_POST('max_mails'   , "");
68 if (!REQUEST_ISSET_POST(('street_nr')))    REQUEST_SET_POST('street_nr'   , "");
69 if (!REQUEST_ISSET_POST(('zip')))          REQUEST_SET_POST('zip'         , "");
70 if (!REQUEST_ISSET_POST(('city')))         REQUEST_SET_POST('city'        , "");
71 if (!REQUEST_ISSET_POST(('cntry')))        REQUEST_SET_POST('cntry'       , "");
72 if (!REQUEST_ISSET_POST(('country_code'))) REQUEST_SET_POST('country_code', "1");
73
74 // Default refid is zero
75 REQUEST_SET_POST('refid', 0);
76 if ($GLOBALS['refid'] > 0) {
77         // Test if the refid is valid
78         $result = SQL_QUERY_ESC("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1",
79                 array(bigintval($GLOBALS['refid'])), __FILE__, __LINE__);
80
81         // Userid found?
82         //* DEBUG: */ die("refid={$GLOBALS['refid']}/numRows=".SQL_NUMROWS($result)."");
83         if (SQL_NUMROWS($result) == 0) {
84                 // Not found so we set your refid!
85                 REQUEST_SET_POST('refid', getConfig('def_refid'));
86                 set_session('refid', getConfig('def_refid'));
87         } else {
88                 // Use the refid here
89                 REQUEST_SET_POST('refid', $GLOBALS['refid']);
90         }
91 } // END - if
92
93 if (IS_FORM_SENT()) {
94         // First we only check the submitted data then we continue... :)
95         //
96         // Did he agree to our Terms Of Usage?
97         if (REQUEST_POST('agree') != "Y") {
98                 REQUEST_SET_POST('agree', "!");
99                 $FAILED = true;
100         } // END - if
101
102         // Did he enter a valid email address? (we really don't care about
103         // that, he has to click on a confirmation link :P )
104         if ((!REQUEST_ISSET_POST(('addy'))) || (!VALIDATE_EMAIL(REQUEST_POST('addy')))) {
105                 REQUEST_SET_POST('addy', "!");
106                 $FAILED = true;
107         } // END - if
108
109         // And what about surname and family's name?
110         if (!REQUEST_ISSET_POST(('surname'))) {
111                 REQUEST_SET_POST('surname', "!");
112                 $FAILED = true;
113         } // END - if
114         if (!REQUEST_ISSET_POST(('family'))) {
115                 REQUEST_SET_POST('family', "!");
116                 $FAILED = true;
117         } // END - if
118
119         // Check for required fields
120         if (!$FAILED) $FAILED = REGISTER_CHECK_REQUIRED_FIELDS(REQUEST_POST_ARRAY());
121
122         // Did he enter his password twice?
123         if (((!REQUEST_ISSET_POST(('pass1'))) || (!REQUEST_ISSET_POST(('pass2')))) || ((REQUEST_POST('pass1') != REQUEST_POST('pass2')) && (REQUEST_ISSET_POST(('pass1'))) && (REQUEST_ISSET_POST(('pass2'))))) {
124                 if ((REQUEST_POST('pass1') != REQUEST_POST('pass2')) && (REQUEST_ISSET_POST(('pass1'))) && (REQUEST_ISSET_POST(('pass2')))) {
125                         REQUEST_SET_POST('pass1', "!");
126                         REQUEST_SET_POST('pass2', "!");
127                 } else {
128                         if (!REQUEST_ISSET_POST(('pass1'))) { REQUEST_SET_POST('pass1', "!"); } else { REQUEST_SET_POST('pass1', ""); }
129                         if (!REQUEST_ISSET_POST(('pass2'))) { REQUEST_SET_POST('pass2', "!"); } else { REQUEST_SET_POST('pass2', ""); }
130                 }
131                 $FAILED = true;
132         } // END - if
133
134         // Is the password long enouth?
135         if ((strlen(REQUEST_POST('pass1')) < getConfig('pass_len')) && (!$FAILED)) {
136                 $SHORT_PASS = true;
137                 $FAILED = true;
138         } // END - if
139
140         // No admin? Admins can always register!
141         if (!IS_ADMIN()) {
142                 // Do this check only when no admin is logged in
143                 foreach (REQUEST_POST('cat') as $id => $answer) {
144                         if ($answer == "Y") $cats++;
145                 } // END - foreach
146
147                 if ($cats < getConfig('least_cats')) {
148                         // ... nope!
149                         $FAILED = true;
150                 } // END - if
151         } // END - if
152
153         if ((REQUEST_POST('addy') != "!") && (getConfig('check_double_email') == "Y")) {
154                 // Does the email address already exists in our database?
155                 $CHK = SEARCH_EMAIL_USERTAB(REQUEST_POST('addy'));
156                 if ($CHK) { REQUEST_SET_POST('addy', "?"); $FAILED = true; }
157         } // END - if
158
159         // Check for IP timeout?
160         if (getConfig('ip_timeout') > 0) {
161                 // Check his IP number
162                 $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",
163                         array(GET_REMOTE_ADDR(), getConfig('ip_timeout'), getConfig('ip_timeout')), __FILE__, __LINE__);
164                 if (SQL_NUMROWS($result) == 1) {
165                         // Same IP in timeout range and different email address entered... Eat this, faker! ;-)
166                         // But admins are allowed to fake their own exchange service.
167                         $IP_TIMEOUT = true;
168                         $FAILED = true;
169                 } // END - if
170         } // END - if
171
172         // Free memory
173         SQL_FREERESULT($result);
174 }
175
176 if ((IS_FORM_SENT()) && ((!$FAILED) || (IS_ADMIN()))) {
177         // Prepapre month and day of birth
178         if (strlen(REQUEST_POST('day'))   == 1) REQUEST_SET_POST('day'  , "0".REQUEST_POST('day'));
179         if (strlen(REQUEST_POST('month')) == 1) REQUEST_SET_POST('month', "0".REQUEST_POST('month'));
180
181         // Get total ...
182         // ... confirmed, ...
183         $confirmedUsers   = GET_TOTAL_DATA("CONFIRMED", "user_data", "userid", "status", true);
184         // ... unconfirmed ...
185         $unconfirmedUsers = GET_TOTAL_DATA("UNCONFIRMED", "user_data", "userid", "status", true);
186         // ... and locked users!
187         $lockedUsers      = GET_TOTAL_DATA("LOCKED", "user_data", "userid", "status", true);
188
189         // Generate hash which will be inserted into confirmation mail
190         $hash = generateHash(sha1($confirmedUsers.":".$unconfirmedUsers.":".$lockedUsers.":".REQUEST_POST('month')."-".REQUEST_POST('day')."-".REQUEST_POST('year').":".getenv('SERVER_NAME').":".GET_REMOTE_ADDR().":".GET_USER_AGENT()."/".constant('SITE_KEY')."/".constant('DATE_KEY')."/".constant('RAND_NUMBER')));
191
192         // Add design when extension sql_patches is v0.2.7 or greater
193         $ADD1 = ""; $ADD2 = "";
194         if (GET_EXT_VERSION("sql_patches") >= "0.2.7") {
195                 // Okay, add design here
196                 $ADD1 = ", curr_theme";
197                 $ADD2 = ", '".GET_CURR_THEME()."'";
198         } // END - if
199
200         // Check if I shall disable sending mail to newly registered members out about active/begging rallye
201         // @TODO Rewrite this to a single filter
202         //
203         // First comes first: begging rallye
204         if (GET_EXT_VERSION("beg") >= "0.1.7") {
205                 // Okay, shall I disable now?
206                 if (getConfig('beg_new_mem_notify') != "Y") {
207                         $ADD1 .= ", beg_ral_notify, beg_ral_en_notify";
208                         $ADD2 .= ", UNIX_TIMESTAMP(), UNIX_TIMESTAMP()";
209                 } // END - if
210         } // END - if
211
212         // Second: active rallye
213         if (GET_EXT_VERSION("bonus") >= "0.7.7") {
214                 // Okay, shall I disable now?
215                 if (getConfig('bonus_new_mem_notify') != "Y") {
216                         $ADD1 .= ", bonus_ral_notify, bonus_ral_en_notify";
217                         $ADD2 .= ", UNIX_TIMESTAMP(), UNIX_TIMESTAMP()";
218                 } // END - if
219         } // END - if
220
221         // Write user data to table
222         if (EXT_IS_ACTIVE("country")) {
223                 // Save with new selectable country code
224                 $countryRow = "country_code";
225                 $countryData = bigintval(REQUEST_POST('country_code'));
226         } else {
227                 // Old way with enterable two-char-code
228                 $countryRow = "country";
229                 $countryData = substr(REQUEST_POST('cntry'), 0, 2);
230         }
231
232         //////////////////////////////
233         // Create user's account... //
234         //////////////////////////////
235         //
236         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.")
237 VALUES ('%s','%s','%s','%s','%s',%s,'%s','%s',%s, %s,%s,'%s',%s, %s,'%s','UNCONFIRMED','%s','%s', UNIX_TIMESTAMP(), UNIX_TIMESTAMP()".$ADD2.")",
238         array(
239                 $countryRow,
240                 substr(REQUEST_POST('gender'), 0, 1),
241                 REQUEST_POST('surname'),
242                 REQUEST_POST('family'),
243                 REQUEST_POST('street_nr'),
244                 $countryData,
245                 bigintval(REQUEST_POST('zip')),
246                 REQUEST_POST('city'),
247                 REQUEST_POST('addy'),
248                 bigintval(REQUEST_POST('day')),
249                 bigintval(REQUEST_POST('month')),
250                 bigintval(REQUEST_POST('year')),
251                 generateHash(REQUEST_POST('pass1')),
252                 bigintval(REQUEST_POST('max_mails')),
253                 bigintval(REQUEST_POST('max_mails')),
254                 bigintval(REQUEST_POST('refid')),
255                 $hash,
256                 GET_REMOTE_ADDR(),
257         ), __FILE__, __LINE__);
258
259         // Get his userid
260         $userid = SQL_INSERTID();
261
262         // Did this work?
263         if ($userid == 0) {
264                 // Something bad happened!
265                 LOAD_TEMPLATE("admin_settings_saved", false, getMessage('USER_NOT_REGISTERED'));
266                 return;
267         } // END - if
268
269         // Is the refback extension there?
270         if (EXT_IS_ACTIVE("refback")) {
271                 // Update refback table
272                 UPDATE_REFBACK_TABLE($userid);
273         } // END - if
274
275         // Write his welcome-points
276         $result = SQL_QUERY_ESC("SELECT id FROM `{!_MYSQL_PREFIX!}_user_points` WHERE userid=%s AND ref_depth=0 LIMIT 1",
277          array(bigintval($userid)), __FILE__, __LINE__);
278         if (SQL_NUMROWS($result) == 0) {
279                 // Add only when the line was not found (maybe some more secure?)
280                 $locked = "points";
281                 if (getConfig('ref_payout') > 0) $locked = "locked_points"; // Pay him later. First he has to confirm some mails!
282                 SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_user_points` (userid, ref_depth, ".$locked.") VALUES (%s,0,'%s')",
283                  array(bigintval($userid), getConfig('points_register')), __FILE__, __LINE__);
284
285                 // Update mediadata as well
286                 if ((GET_EXT_VERSION("mediadata") >= "0.0.4") && ($locked == "points")) {
287                         // Update database
288                         MEDIA_UPDATE_ENTRY(array("total_points"), "add", getConfig('points_register'));
289                 } // END - if
290         } // END - if
291
292         // Write catgories
293         if ((is_array(REQUEST_POST('cat'))) && (count(REQUEST_POST('cat')))) {
294                 foreach (REQUEST_POST('cat') as $cat => $joined) {
295                         if ($joined == "Y") {
296                                 // Insert category entry
297                                 SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_user_cats` (userid, cat_id) VALUES (%s, %s)",
298                                  array(bigintval($userid), bigintval($cat)), __FILE__, __LINE__);
299                         } // END - if
300                 } // END - foreach
301         } // END - if
302
303         // Rewrite gender
304         $gender = TRANSLATE_GENDER(REQUEST_POST('gender'));
305
306         // ... rewrite a zero referal ID to the main title
307         if (REQUEST_POST('refid') == "0") REQUEST_SET_POST('refid', constant('MAIN_TITLE'));
308
309         // Is ZIP code set?
310         if (REQUEST_ISSET_POST(('zip'))) {
311                 // Prepare data array for the email template
312                 // Start with the gender...
313                 $DATA = array(
314                         'hash'    => $hash,
315                         'uid'     => $userid,
316                         'gender'  => $gender,
317                         'surname' => SQL_ESCAPE(REQUEST_POST('surname')),
318                         'family'  => SQL_ESCAPE(REQUEST_POST('family')),
319                         'email'   => SQL_ESCAPE(REQUEST_POST('addy')),
320                         'street'  => SQL_ESCAPE(REQUEST_POST('street_nr')),
321                         'city'    => SQL_ESCAPE(REQUEST_POST('city')),
322                         'zip'     => bigintval(REQUEST_POST('zip')),
323                         'country' => $countryData,
324                         'refid'   => SQL_ESCAPE(REQUEST_POST('refid')),
325                         'pass'    => SQL_ESCAPE(REQUEST_POST('pass1')),
326                 );
327         } else {
328                 // No ZIP code entered
329                 $DATA = array(
330                         'hash'    => $hash,
331                         'uid'     => $userid,
332                         'gender'  => $gender,
333                         'surname' => SQL_ESCAPE(REQUEST_POST('surname')),
334                         'family'  => SQL_ESCAPE(REQUEST_POST('family')),
335                         'email'   => SQL_ESCAPE(REQUEST_POST('addy')),
336                         'street'  => SQL_ESCAPE(REQUEST_POST('street_nr')),
337                         'city'    => SQL_ESCAPE(REQUEST_POST('city')),
338                         'zip'     => "",
339                         'country' => $countryData,
340                         'refid'   => SQL_ESCAPE(REQUEST_POST('refid')),
341                         'pass'    => SQL_ESCAPE(REQUEST_POST('pass1')),
342                 );
343         }
344
345         // Continue with birthday...
346         switch (GET_LANGUAGE())
347         {
348         case "de":
349                 $DATA['birthday'] = bigintval(REQUEST_POST('day')).".".bigintval(REQUEST_POST('month')).".".bigintval(REQUEST_POST('year'));
350                 break;
351
352         default:
353                 $DATA['birthday'] = bigintval(REQUEST_POST('month'))."/".bigintval(REQUEST_POST('day'))."/".bigintval(REQUEST_POST('year'));
354                 break;
355         }
356
357         // Display information to the user that he got mail and send it away
358         $msg_guest = LOAD_EMAIL_TEMPLATE("register-member", $DATA, $userid);
359
360         // Send mail to user (confirmation link!)
361         $EMAIL = $DATA['email'];
362         SEND_EMAIL ($DATA['email'], getMessage('GUEST_CONFIRM_LINK'), $msg_guest);
363         $DATA['email'] = $EMAIL;
364
365         // Send mail to admin
366         SEND_ADMIN_NOTIFICATION(getMessage('ADMIN_NEW_ACCOUNT'), "register-admin", $DATA, $userid);
367
368         // Output success registration
369         LOAD_TEMPLATE("admin_settings_saved", false, getMessage('REGISTRATION_DONE'));
370 } else {
371         if (REQUEST_POST('agree') == "!") {
372                 OUTPUT_HTML("<div class=\"register_failed\">{--HAVE_TO_AGREE--}</div>");
373         } // END - if
374
375         if (REQUEST_POST('addy') == "!") {
376                 OUTPUT_HTML("<div class=\"register_failed\">{--ENTER_EMAIL--}</div>");
377                 REQUEST_SET_POST('addy', "");
378         } elseif (REQUEST_POST('addy') == "?") {
379                 OUTPUT_HTML("<div class=\"register_failed\">{--EMAIL_ALREADY_DB--}</div>");
380                 REQUEST_SET_POST('addy', "");
381         }
382
383         if (REQUEST_POST('surname') == "!") {
384                 OUTPUT_HTML("<div class=\"register_failed\">{--ENTER_SURNAME--}</div>");
385                 REQUEST_SET_POST('surname', "");
386         } // END - if
387
388         if (REQUEST_POST('family') == "!") {
389                 OUTPUT_HTML("<div class=\"register_failed\">{--ENTER_FAMILY--}</div>");
390                 REQUEST_SET_POST('family', "");
391         } // END - if
392
393         if ((REQUEST_POST('pass1') == "!") && (REQUEST_POST('pass2') == "!")) {
394                 OUTPUT_HTML("<div class=\"register_failed\">{--ENTER_BOTH_PASSWORDS--}</div>");
395         } elseif (REQUEST_POST('pass1') == "!") {
396                 OUTPUT_HTML("<div class=\"register_failed\">{--ENTER_PASS1--}</div>");
397         } elseif (REQUEST_POST('pass2') == "!") {
398                 OUTPUT_HTML("<div class=\"register_failed\">{--ENTER_PASS2--}</div>");
399         }
400
401         if ($SHORT_PASS === true) {
402                 OUTPUT_HTML("<div class=\"register_failed\">{--SHORT_PASS--}: ".getConfig('pass_len')."</div>");
403         } // END - if
404
405         if ($IP_TIMEOUT === true) {
406                 OUTPUT_HTML("<div class=\"register_failed\">{--REMOTE_ADDR_TIMEOUT--}</div>");
407         } // END - if
408
409         if ((!empty($cats)) && ($cats < getConfig('least_cats'))) {
410                 OUTPUT_HTML("<div class=\"register_failed\">".sprintf(getMessage('CATS_LEAST'), getConfig('least_cats'))."</div>");
411         } // END - if
412
413         // Generate birthday selection
414         switch (GET_LANGUAGE())
415         {
416         case "de": // German date format
417                 define('BIRTHDAY_SELECTION', ADD_SELECTION("day", REQUEST_POST('day')).ADD_SELECTION("month", REQUEST_POST('month')).ADD_SELECTION("year", REQUEST_POST('year')));
418                 break;
419
420         default: // Default is the US date format... :)
421                 define('BIRTHDAY_SELECTION', ADD_SELECTION("month", REQUEST_POST('month')).ADD_SELECTION("day", REQUEST_POST('day')).ADD_SELECTION("year", REQUEST_POST('year')));
422                 break;
423         }
424
425         // Adds a table for the guests with all visible categories
426         define('CATEGORY_SELECTION', REGISTER_ADD_CATEGORY_TABLE("guest", true));
427
428         // Adds maximum receiveable mails list... :)
429         define('MAX_RECEIVE_LIST', ADD_MAX_RECEIVE_LIST("guest", "", true));
430
431         // Shall I display the refid or shall I make it editable?
432         if (getConfig('display_refid') == "Y") {
433                 // Load "hide" form template
434                 define('REFID_CONTENT', LOAD_TEMPLATE("guest_register_refid_hide", true, $GLOBALS['refid']));
435         } else {
436                 // Load template to enter it
437                 define('REFID_CONTENT', LOAD_TEMPLATE("guest_register_refid", true, $GLOBALS['refid']));
438         }
439
440         // You may want to modify the register_header.tpl.xx file and not this script when you add your scripts etc. :-)
441         define('REGISTER_HEADER_CONTENT', LOAD_TEMPLATE("register_header", true));
442
443         // Please select at least x categories
444         define('LEAST_CATS_VALUE', getConfig('least_cats'));
445
446         // Other values
447         define('__SURNAME', SQL_ESCAPE(REQUEST_POST('surname')));
448         define('__FAMILY',  SQL_ESCAPE(REQUEST_POST('family')));
449         define('__STREET',  SQL_ESCAPE(REQUEST_POST('street_nr')));
450         define('__COUNTRY', SQL_ESCAPE(REQUEST_POST('cntry')));
451         if (REQUEST_ISSET_POST(('zip'))) {
452                 define('__ZIP', bigintval(REQUEST_POST('zip')));
453         } else {
454                 define('__ZIP', "");
455         }
456         define('__CITY',    SQL_ESCAPE(REQUEST_POST('city')));
457         define('__ADDY',    SQL_ESCAPE(REQUEST_POST('addy')));
458
459         // Shall I add a counrty selection box or the old input box?
460         if (EXT_IS_ACTIVE("country")) {
461                 // New variant, good!
462                 $OUT  = "<select name=\"country_code\" class=\"guest_select\" size=\"1\">\n";
463                 $whereStatement = "WHERE is_active='Y'";
464                 if (IS_ADMIN()) $whereStatement = "";
465                 $OUT .= ADD_OPTION_LINES("countries", "id", "descr", REQUEST_POST('country_code'), "code", $whereStatement);
466                 $OUT .= "</select>";
467                 define('__COUNTRY_CONTENT', $OUT);
468         } else {
469                 // Old out-dated variant
470                 define('__COUNTRY_CONTENT', "<input type=\"text\" name=\"cntry\" class=\"guest_normal\" size=\"2\" maxlength=\"3\" value=\"{!__COUNTRY!}\" />");
471         }
472
473         // Set MUST_??? constants
474         if ((EXT_IS_ACTIVE("register")) && (GET_EXT_VERSION("register") > "0.0")) REGISTER_FILL_MUST_CONSTANTS();
475
476         // Display registration form
477         LOAD_TEMPLATE("guest_register");
478 }
479
480 //
481 ?>