reading and checking for session variables rewritten
[mailer.git] / inc / functions.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 08/25/2003 *
4  * ===============                              Last change: 11/29/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : functions.php                                    *
8  * -------------------------------------------------------------------- *
9  * Short description : Many non-MySQL functions (also file access)      *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Viele Nicht-MySQL-Funktionen (auch Dateizugriff) *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 // Check if our config file is writeable or not
41 function is_INCWritable($inc) {
42         $fp = @fopen(PATH."inc/".$inc.".php", 'a');
43         if ($inc == "dummy") {
44                 // Remove dummy file
45                 @fclose($fp);
46                 return @unlink(PATH."inc/dummy.php");
47         } else {
48                 // Close all other files
49                 return @fclose($fp);
50         }
51 }
52
53 // Open a table (you may want to add some header stuff here)
54 function OPEN_TABLE($PERCENT = "", $CLASS = "", $ALIGN="left", $VALIGN="", $td_only=false) {
55         global $table_cnt;
56         // Count tables so we can generate CSS classes for every table... :-)
57         if (empty($CLASS)) {
58                 // Class is empty so count one up and create a class
59                 $table_cnt++; $CLASS = "class".$table_cnt;
60         }
61         $OUT = "<TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"0\"";
62
63         // Shall I add the classes to TABLE and TD or only to TD?
64         if (!$td_only) $OUT .= " class=\"".$CLASS."\"";
65
66         // Width is given
67         if (!empty($PERCENT)) $OUT .= " width=\"".$PERCENT."\"";
68
69         // Horizonal align
70         if (!empty($ALIGN)) $OUT .=" align=\"".$ALIGN."\"";
71
72         // Vertical align is given
73         if (!empty($VALIGN))  $OUT .= " valign=\"".$VALIGN."\"";
74         $OUT .= ">
75 <TR>
76   <TD";
77         if (!empty($ALIGN)) $OUT .=" align=\"".$ALIGN."\"";
78         $OUT .= " class=\"".$CLASS."\">";
79         OUTPUT_HTML($OUT);
80 }
81
82 // Close a table (you may want to add some footer stuff here)
83 function CLOSE_TABLE($ADD="") {
84         OUTPUT_HTML("  </TD>
85 </TR>");
86         if (!empty($ADD)) OUTPUT_HTML($ADD);
87         OUTPUT_HTML("</TABLE>");
88 }
89
90 // Output HTML code directly or "render" it. You addionally switch the new-line character off
91 function OUTPUT_HTML($HTML, $NEW_LINE = true) {
92         // Some global variables
93         global $OUTPUT, $footer, $CSS;
94
95         // Do we have HTML-Code here?
96         if (!empty($HTML)) {
97                 // Yes, so we handle it as you have configured
98                 switch (OUTPUT_MODE)
99                 {
100                 case "render":
101                         // That's why you don't need any \n at the end of your HTML code... :-)
102                         if (_OB_CACHING == "on") {
103                                 // Output into PHP's internal buffer
104                                 OUTPUT_RAW($HTML);
105
106                                 // That's why you don't need any \n at the end of your HTML code... :-)
107                                 if ($NEW_LINE) echo "\n";
108                         } else {
109                                 // Render mode for old or lame servers...
110                                 $OUTPUT .= $HTML;
111
112                                 // That's why you don't need any \n at the end of your HTML code... :-)
113                                 if ($NEW_LINE) $OUTPUT .= "\n";
114                         }
115                         break;
116
117                 case "direct":
118                         // If we are switching from render to direct output rendered code
119                         if ((!empty($OUTPUT)) && (_OB_CACHING != "on")) { OUTPUT_RAW($OUTPUT); $OUTPUT = ""; }
120
121                         // The same as above... ^
122                         OUTPUT_RAW($HTML);
123                         if ($NEW_LINE) echo "\n";
124                         break;
125
126                 default:
127                         // Huh, something goes wrong or maybe you have edited config.php ???
128                         die ("<STRONG>".FATAL_ERROR.":</STRONG> ".LANG_NO_RENDER_DIRECT);
129                         break;
130                 }
131         } elseif ((_OB_CACHING == "on") && ($footer == 1)) {
132                 // Output cached HTML code
133                 $OUTPUT = ob_get_contents();
134
135                 // Clear output buffer for later output
136                 ob_end_clean();
137
138                 if ((EXT_IS_ACTIVE("rewrite", true)) && (function_exists('REWRITE_LINKS')) && ($CSS != "1") && ($CSS != "-1")) {
139                         $OUTPUT = REWRITE_LINKS($OUTPUT);
140                 }
141
142                 // Compile and run finished rendered HTML code
143                 while (strpos($OUTPUT, "{!") > 0) {
144                         $eval = "\$OUTPUT = \"" . COMPILE_CODE(addslashes($OUTPUT)) . "\";";
145                         @eval($eval);
146                 }
147
148                 // Output code here, DO NOT REMOVE! ;-)
149                 OUTPUT_RAW($OUTPUT);
150         } elseif ((OUTPUT_MODE == "render") && (!empty($OUTPUT))) {
151                 // Rewrite links when rewrite extension is active
152                 if ((EXT_IS_ACTIVE("rewrite", true)) && (function_exists('REWRITE_LINKS')) && ($CSS != "1") && ($CSS != "-1")) {
153                         $OUTPUT = REWRITE_LINKS($OUTPUT);
154                 }
155
156                 // Compile and run finished rendered HTML code
157                 while (strpos($OUTPUT, "{!") > 0) {
158                         $eval = "\$OUTPUT = \"" . COMPILE_CODE(addslashes($OUTPUT)) . "\";";
159                         @eval($eval);
160                 }
161
162                 // Output code here, DO NOT REMOVE! ;-)
163                 OUTPUT_RAW($OUTPUT);
164         }
165 }
166
167 // Output the raw HTML code
168 function OUTPUT_RAW ($HTML) {
169         if ((isBooleanConstantAndTrue('mxchange_installed')) && (basename($_SERVER['PHP_SELF']) != "install.php")) {
170                 // Not in install-mode so strip slashes away
171                 echo stripslashes($HTML);
172         } else {
173                 // Output directly in install-mode
174                 echo $HTML;
175         }
176
177         // Flush the output
178         flush();
179 }
180
181 // Add a fatal error message to the queue array
182 function ADD_FATAL ($message, $extra="")
183 {
184         global $FATAL;
185         if (empty($extra)) {
186                 // Regular text message to add to $FATAL
187                 $FATAL[] = $message;
188         } else {
189                 // $message is text with a mask plus extras to insert into the text
190                 $FATAL[] = sprintf($message, $extra);
191         }
192 }
193
194 // Load a template file and return it's content (only it's name; do not use ' or ")
195 function LOAD_TEMPLATE($template, $return=false, $content="") {
196         // Add more variables which you want to use in your template files
197         global $DATA, $_CONFIG, $username;
198
199         // Count the template load
200         if (!isset($_CONFIG['num_templates'])) $_CONFIG['num_templates'] = 0;
201         $_CONFIG['num_templates']++;
202
203         // Init some data
204         $ACTION = SQL_ESCAPE($GLOBALS['action']);
205         $WHAT = SQL_ESCAPE($GLOBALS['what']);
206         $ret = "";
207         if (empty($GLOBALS['refid'])) $GLOBALS['refid'] = 0;
208         $REFID = $GLOBALS['refid'];
209
210         if ($template == "member_support_form") {
211                 // Support request of a member
212                 $result = SQL_QUERY_ESC("SELECT sex, surname, family FROM "._MYSQL_PREFIX."_user_data WHERE userid=%d LIMIT 1",
213                  array($GLOBALS['userid']), __FILE__, __LINE__);
214                 list($sex, $surname, $family) = SQL_FETCHROW($result);
215                 SQL_FREERESULT($result);
216                 $salut = TRANSLATE_SEX($sex);
217         }
218
219         // Generate date/time string
220         $date_time = MAKE_DATETIME(time(), "1");
221
222         // Base directory
223         $BASE = PATH."templates/".GET_LANGUAGE()."/html/";
224         $MODE = "";
225
226         // Check for admin/guest/member templates
227         if (strpos($template, "admin_") > -1) {
228                 // Admin template found
229                 $MODE = "admin/";
230         } elseif (strpos($template, "guest_") > -1) {
231                 // Guest template found
232                 $MODE = "guest/";
233         } elseif (strpos($template, "member_") > -1) {
234                 // Member template found
235                 $MODE = "member/";
236         } elseif (strpos($template, "install_") > -1) {
237                 // Installation template found
238                 $MODE = "install/";
239         } elseif (strpos($template, "ext_") > -1) {
240                 // Extension template found
241                 $MODE = "ext/";
242         } elseif (strpos($template, "la_") > -1) {
243                 // "Logical-area" template found
244                 $MODE = "la/";
245         } else {
246                 // Test for extension
247                 $test = substr($template, 0, strpos($template, "_"));
248                 if (EXT_IS_ACTIVE($test)) {
249                         // Set extra path to extension's name
250                         $MODE = $test."/";
251                 }
252         }
253
254         ////////////////////////
255         // Generate file name //
256         ////////////////////////
257         $file = $BASE.$MODE.$template.".tpl";
258
259         if ((!empty($GLOBALS['what'])) && ((strpos($template, "_header") > 0) || (strpos($template, "_footer") > 0)) && (($MODE == "guest/") || ($MODE == "member/") || ($MODE == "admin/"))) {
260                 // Select what depended header/footer template file for admin/guest/member area
261                 $file2 = sprintf("%s%s%s_%s.tpl",
262                         $BASE,
263                         $MODE,
264                         $template,
265                         SQL_ESCAPE($GLOBALS['what'])
266                 );
267
268                 // Probe for it...
269                 if (file_exists($file2)) $file = $file2;
270
271                 // Remove variable from memory
272                 unset($file2);
273         }
274
275         // Does the special template exists?
276         if ((!file_exists($file)) || (!is_readable($file))) {
277                 // Reset to default template
278                 $file = $BASE.$template.".tpl";
279         }
280
281         // Now does the final template exists?
282         if ((file_exists($file)) && (is_readable($file))) {
283                 // The local file does exists so we load it. :)
284                 $tmpl_file = implode("", file($file));
285
286                 // Replace ' to our own chars to preventing them being quoted
287                 while (strpos($tmpl_file, "\'") !== false) { $tmpl_file = str_replace("\'", "{QUOT}", $tmpl_file); }
288
289                 // Do we have to compile the code?
290                 if ((strpos($tmpl_file, "\$") !== false) || (strpos($tmpl_file, '{--') !== false) || (strpos($tmpl_file, '--}') > 0)) {
291                         // Okay, compile it!
292                         $tmpl_file = "\$ret=\"".COMPILE_CODE(addslashes($tmpl_file))."\";";
293                         eval($tmpl_file);
294                 } else {
295                         // Simply return loaded code
296                         $ret = $tmpl_file;
297                 }
298
299                 // Add surrounding HTML comments to help finding bugs faster
300                 $ret = "<!-- Template ".$template." - Start -->\n".$ret."<!-- Template ".$template." - End -->\n";
301         } elseif ((IS_ADMIN()) || ((isBooleanConstantAndTrue('mxchange_installing')) && (!isBooleanConstantAndTrue('mxchange_installed')))) {
302                 // Only admins shall see this warning or when installation mode is active
303                 $ret = "<br /><SPAN class=\"guest_failed\">".TEMPLATE_404."</SPAN><br />
304 (".basename($file).")<br />
305 <br />
306 ".TEMPLATE_CONTENT."
307 <PRE>".print_r($content, true)."</PRE>
308 ".TEMPLATE_DATA."
309 <PRE>".print_r($DATA, true)."</PRE>
310 <br /><br />";
311         }
312
313         // Do we have some content to output or return?
314         if (!empty($ret)) {
315                 // Not empty so let's put it out! ;)
316                 if ($return) {
317                         // Return the HTML code
318                         return $ret;
319                 } else {
320                         // Output direct
321                         OUTPUT_HTML($ret);
322                 }
323         } elseif (isBooleanConstantAndTrue('DEBUG_MODE')) {
324                 // Warning, empty output!
325                 return "E:".$template."<br />\n";
326         }
327 }
328
329 // Send mail out to an email address
330 function SEND_EMAIL($TO, $SUBJECT, $MSG, $HTML='N', $FROM="") {
331         // Compile subject line (for POINTS constant etc.)
332         $eval = "\$SUBJECT = \"".COMPILE_CODE(addslashes($SUBJECT))."\";";
333         eval($eval);
334         $SUBJECT = html_entity_decode($SUBJECT);
335
336         // Set from header
337         if (!eregi("@", $TO)) {
338                 // Value detected, load email from database
339                 if (EXT_IS_ACTIVE("msg")) {
340                         ADD_MESSAGE_TO_BOX($TO, $SUBJECT, $MSG, $HTML);
341                         return;
342                 } else {
343                         $result_email = SQL_QUERY_ESC("SELECT email FROM "._MYSQL_PREFIX."_user_data WHERE userid=%d LIMIT 1", array(bigintval($TO)), __FILE__, __LINE__);
344                         list($TO) = SQL_FETCHROW($result_email);
345                         SQL_FREERESULT($result_email);
346                 }
347         }
348
349         // Not in PHPMailer-Mode
350         if (!CHECK_PHPMAILER_USAGE()) {
351                 if (empty($FROM)) {
352                         // Load email header template
353                         $FROM = LOAD_EMAIL_TEMPLATE("header");
354                 } else {
355                         // Append header
356                         $FROM .= LOAD_EMAIL_TEMPLATE("header");
357                 }
358         } elseif (isBooleanConstantAndTrue('DEBUG_MODE')) {
359                 if (empty($FROM)) {
360                         // Load email header template
361                         $FROM = LOAD_EMAIL_TEMPLATE("header");
362                 } else {
363                         // Append header
364                         $FROM .= LOAD_EMAIL_TEMPLATE("header");
365                 }
366         }
367
368         // Fix HTML parameter (default is no!)
369         if (empty($HTML)) $HTML = 'N';
370         if (isBooleanConstantAndTrue('DEBUG_MODE')) {
371                 // In debug mode we want to display the mail instead of sending it away so we can debug this part
372                 echo "<PRE>
373 ".htmlentities(trim($FROM))."
374 To      : ".$TO."
375 Subject : ".$SUBJECT."
376 Message : ".$MSG."
377 </PRE>\n";
378         } elseif (($HTML == 'Y') && (EXT_IS_ACTIVE("html_mail", true))) {
379                 // Send mail as HTML away
380                 SEND_HTML_EMAIL($TO, $SUBJECT, $MSG, $FROM);
381         } elseif (!empty($TO)) {
382                 // Compile email
383                 $TO = COMPILE_CODE($TO);
384
385                 // Send Mail away
386                 SEND_RAW_EMAIL($TO, COMPILE_CODE($SUBJECT), COMPILE_CODE($MSG), $FROM);
387         } elseif ($HTML == 'N') {
388                 // Problem found!
389                 SEND_RAW_EMAIL(WEBMASTER, COMPILE_CODE($SUBJECT), COMPILE_CODE($MSG), $FROM);
390         }
391 }
392
393 // Check if legacy or PHPMailer command
394 // @private
395 function CHECK_PHPMAILER_USAGE() {
396         return ((defined('SMTP_HOSTNAME')) && (defined('SMTP_USER')) && (defined('SMTP_PASSWORD')) && (SMTP_HOSTNAME != "") && (SMTP_USER != ""));
397 }
398
399 /*
400  * Send out a raw email with PHPMailer class or legacy mail() command
401  */
402 function SEND_RAW_EMAIL ($to, $subject, $msg, $from) {
403         // Shall we use PHPMailer class or legacy mode?
404         if (CHECK_PHPMAILER_USAGE()) {
405                 // Use PHPMailer class with SMTP enabled
406                 require_once(PATH."inc/phpmailer/class.phpmailer.php");
407                 require_once(PATH."inc/phpmailer/class.smtp.php");
408
409                 // get new instance
410                 $mail = new PHPMailer();
411                 $mail->PluginDir  = PATH."inc/phpmailer/";
412
413                 $mail->IsSMTP();
414                 $mail->SMTPAuth   = true;
415                 $mail->Host       = SMTP_HOSTNAME;
416                 $mail->Port       = 25;
417                 $mail->Username   = SMTP_USER;
418                 $mail->Password   = SMTP_PASSWORD;
419                 $mail->From       = $from;
420                 $mail->FromName   = MAIN_TITLE;
421                 $mail->Subject    = $subject;
422                 if ((EXT_IS_ACTIVE("html_mail")) && (strip_tags($msg) != $msg)) {
423                         $mail->Body       = $msg;
424                         $mail->AltBody    = "Your mail program required HTML support to read this mail!";
425                         $mail->WordWrap   = 70;
426                         $mail->IsHTML(true);
427                 } else {
428                         $mail->Body       = $msg;
429                 }
430                 $mail->AddAddress($to, "");
431                 $mail->AddReplyTo(WEBMASTER,MAIN_TITLE);
432                 $mail->AddCustomHeader("Errors-To:".WEBMASTER);
433                 $mail->AddCustomHeader("X-Loop:".WEBMASTER);
434                 $mail->Send();
435         } else {
436                 // Use legacy mail() command
437                 @mail($to, $subject, $msg, $from);
438         }
439 }
440 //
441
442 // Generate a password in a specified length or use default password length
443 function GEN_PASS($LEN = 0) {
444         global $_CONFIG;
445         if ($LEN == 0) $LEN = $_CONFIG['pass_len'];
446
447         // Initialize array with all allowed chars
448         $ABC = explode(",", "a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,0,1,2,3,4,5,6,7,8,9,-,+,_,/");
449
450         // Initialize randomizer
451         mt_srand((double) microtime() * 1000000);
452
453         // Start creating password
454         $PASS = "";
455         for ($i = 0; $i < $LEN; $i++) {
456                 $PASS .= $ABC[mt_rand(0, sizeof($ABC) -1)];
457         }
458
459         // When the size is below 40 we can also add additional security by scrambling it
460         if (strlen($PASS) <= 40) {
461                 // Also scramble the password
462                 $PASS = scrambleString($PASS);
463         }
464
465         // Return the password
466         return $PASS;
467 }
468 //
469 function MAKE_DATETIME($time, $mode="0")
470 {
471         if ($time == 0) {
472                 // Never happend
473                 return NEVER_HAPPENED;
474         } else {
475                 // Filter out numbers
476                 $time = bigintval($time);
477         }
478
479         switch (GET_LANGUAGE())
480         {
481         case "de": // German date / time format
482                 switch ($mode)
483                 {
484                         case "0": $ret = date("d.m.Y \u\m H:i \U\h\\r", $time); break;
485                         case "1": $ret = strtolower(date("d.m.Y - H:i", $time)); break;
486                         case "2": $ret = date("d.m.Y|H:i", $time); break;
487                         case "3": $ret = date("d.m.Y", $time); break;
488                 }
489                 break;
490
491         default:        // Default is the US date / time format!
492                 switch ($mode)
493                 {
494                         case "0": $ret = date("r", $time); break;
495                         case "1": $ret = date("Y-m-d - g:i A", $time); break;
496                         case "2": $ret = date("y-m-d|H:i", $time); break;
497                         case "3": $ret = date("y-m-d", $time); break;
498                 }
499         }
500         return $ret;
501 }
502
503 // Translates the american decimal dot into a german comma
504 function TRANSLATE_COMMA($dotted, $cut=true)
505 {
506         global $_CONFIG;
507         // Default is 3 you can change this in admin area "Misc -> Misc Options"
508         if (empty($_CONFIG['max_comma'])) $_CONFIG['max_comma'] = "3";
509         if (!ereg("\.", $dotted)) $dotted .= ".".str_repeat("0", $_CONFIG['max_comma']);
510         if ($cut) {
511                 // Remove trailing zeros
512                 $dot = str_replace(".", "x", $dotted);
513                 while(substr($dot, -1, 1) == "0") {
514                         $dot = substr($dot, 0, -1);
515                 }
516
517                 if (substr($dot, -1, 1) == "x") {
518                         // Last char is the 'x'
519                         $dotted = substr($dot, 0, -1);
520                 } else {
521                         // Last char is a number
522                         $dotted = str_replace("x", ".", $dot);
523                 }
524         }
525
526         // Translate it now
527         switch (GET_LANGUAGE()) {
528         case "de":
529                 $pos = strpos($dotted, ".");
530                 if ($pos > 0) {
531                         if ($cut) {
532                                 // Cut x numbers behind comma
533                                 $dotted = str_replace(".", ",", substr($dotted, 0, ($pos + $_CONFIG['max_comma'] + 1)));
534                         } else {
535                                 // Replace comma with dot
536                                 $dotted = str_replace(".", ",", $dotted);
537                         }
538                 } elseif (!$cut) {
539                         if (empty($pos)) {
540                                 $dotted = "0,".str_repeat("0", $_CONFIG['max_comma']);
541                         } else {
542                                 $dotted .= ",".str_repeat("0", $_CONFIG['max_comma']);
543                         }
544                 }
545                 break;
546
547         default:
548                 if (!$cut) {
549                         if ($pos > 0) {
550                                 $dotted = substr($dotted, 0, ($pos + $_CONFIG['max_comma'] + 1));
551                         } else {
552                                 $dotted .= ".".str_repeat("0", $_CONFIG['max_comma']);
553                         }
554                 }
555                 break;
556         }
557         return $dotted;
558 }
559
560 //
561 function DEREFERER($URL) {
562         $URL = URL."/modules.php?module=loader&amp;url=".urlencode(base64_encode(COMPILE_CODE($URL)));
563         return $URL;
564 }
565
566 //
567 function TRANSLATE_SEX($sex) {
568         switch ($sex)
569         {
570                 case "M": $ret = SEX_M; break;
571                 case "F": $ret = SEX_F; break;
572                 case "C": $ret = SEX_C; break;
573                 default : $ret = $sex; break;
574         }
575         return $ret;
576 }
577 //
578 function GET_POOL_TYPE($PT)
579 {
580         switch ($PT)
581         {
582                 case "TEMP"   : $ret = POOL_TEMP;    break;
583                 case "SEND"   : $ret = POOL_SEND;    break;
584                 case "NEW"    : $ret = POOL_NEW;     break;
585                 case "ADMIN"  : $ret = POOL_ADMIN;   break;
586                 case "ACTIVE" : $ret = POOL_ACTIVE;  break;
587                 case "DELETED": $ret = POOL_DELETED; break;
588                 default       : $ret = POOL_UNKNOWN." (".$PT.")"; break;
589         }
590         return $ret;
591 }
592 //
593 function FRAMETESTER($URL)
594 {
595         global $_SERVER;
596         $URL = URL."/modules.php?module=frametester&amp;url=".urlencode(base64_encode(COMPILE_CODE($URL)));
597         return $URL;
598 }
599 //
600 function SELECTION_COUNT($array)
601 {
602         $ret = "0";
603         if (is_array($array))
604         {
605                 foreach ($array as $key=>$sel)
606                 {
607                         if (!empty($sel)) $ret++;
608                 }
609         }
610         return $ret;
611 }
612 //
613 function IMG_CODE ($code, $type, $DATA, $uid)
614 {
615         return "<IMG border=\"0\" alt=\"Code\" src=\"".URL."/mailid_top.php?uid=".$uid."&amp;".$type."=".$DATA."&amp;mode=img&amp;code=".$code."\">";
616 }
617 //
618 function TRANSLATE_STATUS($status)
619 {
620         switch ($status)
621         {
622         case "UNCONFIRMED":
623                 $ret = ACCOUNT_UNCONFIRMED;
624                 break;
625
626         case "CONFIRMED":
627                 $ret = ACCOUNT_CONFIRMED;
628                 break;
629
630         case "LOCKED":
631                 $ret = ACCOUNT_LOCKED;
632                 break;
633
634         default:
635                 $ret = UNKNOWN_STATUS_1.$status.UNKNOWN_STATUS_2;
636                 break;
637         }
638         return $ret;
639 }
640 //
641 function GET_LANGUAGE() {
642         if (!empty($_GET['mx_lang'])) {
643                 // Accept only first 2 chars
644                 $lang = substr($_GET['mx_lang'], 0, 2);
645         } else {
646                 // Do nothing
647                 $lang = "";
648         }
649
650         // Set default return value to default language from config
651         $ret = DEFAULT_LANG;
652
653         // Check GET variable and cookie
654         if (!empty($lang)) {
655                 // Check if main language file does exist
656                 if (file_exists(PATH."inc/language/".$lang.".php")) {
657                         // Okay found, so let's update cookies
658                         SET_LANGUAGE($lang);
659                 }
660         } elseif (!isSessionVariableSet('mx_lang')) {
661                 // Return stored value from cookie
662                 $ret = get_session('mx_lang');
663         }
664         return $ret;
665 }
666 //
667 function SET_LANGUAGE($lang) {
668         global $_CONFIG;
669
670         // Accept only first 2 chars!
671         $lang = substr(SQL_ESCAPE(strip_tags($lang)), 0, 2);
672
673         // Set cookie
674         set_session("mx_lang", $lang);
675 }
676 //
677 function LOAD_EMAIL_TEMPLATE($template, $content="", $UID="0")
678 {
679         global $DATA, $_CONFIG, $REPLACER;
680
681         // Keept for backward-compatiblity (please replace these variables against our new {--CONST--} syntax!)
682         $MAIN_TITLE = MAIN_TITLE; $URL = URL; $WEBMASTER = WEBMASTER;
683         $surname = ""; $family = ""; $nick = ""; $sex = 'N';
684
685         // Prepare IP number and User Agent
686         $REMOTE_ADDR = getenv('REMOTE_ADDR');
687         $HTTP_USER_AGENT  = getenv('HTTP_USER_AGENT');
688
689         $ADMIN = MAIN_TITLE;
690         if (isSessionVariableSet('admin_login')) {
691                 // Load Admin data
692                 $result = SQL_QUERY_ESC("SELECT email FROM "._MYSQL_PREFIX."_admins WHERE login='%s' LIMIT 1",
693                         array(SQL_ESCAPE(get_session('admin_login'))), __FILE__, __LINE__);
694                 list($ADMIN) = SQL_FETCHROW($result);
695                 SQL_FREERESULT($result);
696         }
697
698         // Expiration in a nice output format
699         if ($_CONFIG['auto_purge'] == 0)
700         {
701                 // Will never expire!
702                 $EXPIRATION = MAIL_WILL_NEVER_EXPIRE;
703         }
704          elseif (function_exists('CREATE_FANCY_TIME'))
705         {
706                 // Create nice date string
707                 $EXPIRATION = CREATE_FANCY_TIME($_CONFIG['auto_purge']);
708         }
709          else
710         {
711                 // Display days only
712                 $EXPIRATION = round($_CONFIG['auto_purge']/60/60/24)." "._DAYS;
713         }
714         switch ($template)
715         {
716         case "bonus-mail": // Load data for the bonus mail
717                 $BONUSID    = $DATA[0];
718                 $content    = $DATA[2];
719                 $points     = TRANSLATE_COMMA($DATA[4]);
720                 $TIME       = $DATA[5];
721                 $TARGET_URL = $DATA[8];
722                 $CATEGORY   = GET_CATEGORY($DATA[9]);
723                 $DATA[10]   = $UID;
724
725                 // Replace variables
726                 foreach ($REPLACER as $key=>$value)
727                 {
728                         if (isset($DATA[$key])) $content = str_replace($value, $DATA[$key], $content);
729                 }
730                 break;
731
732         case "order-admin":
733         case "order-member":
734                 $BLOCKS     = $_CONFIG['max_send'];
735                 $SUBJECT    = $DATA[0];
736                 $content    = $DATA[1];
737                 $PAYMENT    = GET_PAYMENT($DATA[3]);
738                 $TARGET_URL = $DATA[5];
739                 $CATEGORY   = GET_CATEGORY($DATA[6]);
740                 break;
741
742         case "order-reject":
743         case "order-deleted":
744         case "order-accept":
745                 $TARGET_URL = $DATA[0];
746                 $URL        = $DATA[0];
747                 $SUBJECT    = $DATA[1];
748                 break;
749
750         case "new-pass":
751                 $PASS       = $DATA[0];
752                 $REMOTE     = $DATA[1];
753                 break;
754
755         case "confirm-member":
756                 $points     = $_CONFIG['points_register'];
757                 break;
758
759         case "confirm-referral":
760                 $PERCENT    = $DATA[0];
761                 $LEVEL      = $DATA[1];
762                 $points     = $DATA[2];
763                 $REFID      = $DATA[3];
764                 break;
765
766         case "normal-mail":
767                 $SEND_UID   = $DATA[1];
768                 $CATEGORY   = GET_CATEGORY($DATA[9]);
769                 $TIME       = GET_PAY_POINTS($DATA[5], "time");
770                 $TARGET_URL = $DATA[7];
771                 $points     = TRANSLATE_COMMA(GET_PAY_POINTS($DATA[5], "payment"));
772                 // Warning! This ID has changed from 10 to 11!
773                 $MAILID     = $DATA[11];
774
775                 // Replace variables
776                 foreach ($REPLACER as $key=>$value)
777                 {
778                         if (isset($DATA[$key])) $content = str_replace($value, $DATA[$key], $content);
779                 }
780                 break;
781
782         case "done-member":
783         case "done-admin":
784                 $SEND_UID   = $DATA[1];
785                 $CATEGORY   = GET_CATEGORY($DATA[9]);
786                 $TARGET_URL = $DATA[7];
787                 break;
788
789         case "back-admin":
790         case "back-member":
791                 $points     = TRANSLATE_COMMA($DATA[10]);
792                 break;
793
794         case "add-points":
795                 $points = bigintval($_POST['points']);
796                 break;
797
798         case "guest_request_confirm":
799                 $HASH       = $DATA[2];
800                 break;
801         }
802
803         // Load user's data
804         if ($UID > 0)
805         {
806                 if (EXT_IS_ACTIVE("nickname"))
807                 {
808                         // Load nickname
809                         $result = SQL_QUERY_ESC("SELECT surname, family, sex, email, nickname FROM "._MYSQL_PREFIX."_user_data WHERE userid=%d LIMIT 1",
810                          array(bigintval($UID)), __FILE__, __LINE__);
811                         list($surname, $family, $sex, $email, $nick) = SQL_FETCHROW($result);
812                         SQL_FREERESULT($result);
813                 }
814                  else
815                 {
816                         // Load normal data
817                         $result = SQL_QUERY_ESC("SELECT surname, family, sex, email FROM "._MYSQL_PREFIX."_user_data WHERE userid=%d LIMIT 1",
818                          array(bigintval($UID)), __FILE__, __LINE__);
819                         list($surname, $family, $sex, $email) = SQL_FETCHROW($result);
820                         SQL_FREERESULT($result);
821                         $nick = "---";
822                 }
823         }
824          else
825         {
826                 // Neutral sex and email address is default
827                 $sex = 'N';
828                 $email = WEBMASTER;
829         }
830
831         // Translate M to male or F to female
832         $salut = TRANSLATE_SEX($sex);
833
834         // Store email for some functions in global data array
835         $DATA['email'] = $email;
836
837         // Base directory
838         $BASE = PATH."templates/".GET_LANGUAGE()."/emails/";
839
840         // Check for admin/guest/member templates
841         if (strpos($template, "admin_") > -1)
842         {
843                 // Admin template found
844                 $file = $BASE."admin/".$template.".tpl";
845         }
846          elseif (strpos($template, "guest_") > -1)
847         {
848                 // Guest template found
849                 $file = $BASE."guest/".$template.".tpl";
850         }
851          elseif (strpos($template, "member_") > -1)
852         {
853                 // Member template found
854                 $file = $BASE."member/".$template.".tpl";
855         }
856          else
857         {
858                 // Test for extension
859                 $test = substr($template, 0, strpos($template, "_"));
860                 if (EXT_IS_ACTIVE($test))
861                 {
862                         // Set extra path to extension's name
863                         $file = $BASE.$test."/".$template.".tpl";
864                 }
865                  else
866                 {
867                         // No special filename
868                         $file = $BASE.$template.".tpl";
869                 }
870         }
871
872         // Does the special template exists?
873         if (!@file_exists($file))
874         {
875                 // Reset to default template
876                 $file = $BASE.$template.".tpl";
877         }
878
879         // Now does the final template exists?
880         if ((@file_exists($file)) && (is_readable($file)))
881         {
882                 // The local file does exists so we load it. :)
883                 $tmpl_file = @implode("", @file($file));
884                 $tmpl_file = addslashes($tmpl_file);
885
886                 // Compile code
887                 $tmpl_file = COMPILE_CODE($tmpl_file);
888
889                 // Run code
890                 $tmpl_file = "\$content=\"".$tmpl_file."\";";
891                 eval($tmpl_file);
892
893                 // Replace HTML confirm chars
894                 $content = html_entity_decode($content);
895         }
896          elseif (!empty($template))
897         {
898                 // Template file not found!
899                 $content = TEMPLATE_404.": ".$template."<br />
900 ".TEMPLATE_CONTENT."
901 <PRE>".print_r($content, true)."</PRE>
902 ".TEMPLATE_DATA."
903 <PRE>".print_r($DATA, true)."</PRE>
904 <br /><br />";
905
906                 // Debug mode not active? Then remove the HTML tags
907                 if (!DEBUG_MODE) $content = strip_tags($content);
908         }
909          else
910         {
911                 // No template name supplied!
912                 $content = NO_TEMPLATE_SUPPLIED;
913         }
914         return COMPILE_CODE($content);
915 }
916 //
917 function MAKE_TIME($H, $M, $S, $stamp)
918 {
919         // Extract day, month and year from given timestamp
920         $DAY   = date("d", $stamp);
921         $MONTH = date("m", $stamp);
922         $YEAR  = date('Y', $stamp);
923
924         // Create timestamp for wished time which depends on extracted date
925         return mktime($H, $M, $S, $MONTH, $DAY, $YEAR);
926 }
927 //
928 function LOAD_URL($URL, $addUrlData=true) {
929         global $CSS, $_CONFIG, $link, $db, $footer;
930
931         // Check if http(s):// is there
932         if ((substr($URL, 0, 7) != "http://") && (substr($URL, 0, 8) != "https://")) {
933                 // Make all URLs full-qualified
934                 $URL = URL."/".$URL;
935         }
936
937         // Compile out URI codes
938         $URL = COMPILE_CODE($URL);
939
940         // Add some data to URL if cookies are not accepted
941         if (((!defined('__COOKIES')) || (!__COOKIES)) && ($addUrlData)) $URL = ADD_URL_DATA($URL);
942
943         // Probe for bot from search engine
944         if ((eregi("spider", getenv('HTTP_USER_AGENT'))) || (eregi("bot", getenv('HTTP_USER_AGENT'))) || (eregi("spider", getenv('HTTP_USER_AGENT')))) {
945                 // Search engine bot detected so let's rewrite many chars for the link
946                 $URL = htmlentities(strip_tags($URL), ENT_QUOTES);
947
948                 // Output new location link as anchor
949                 OUTPUT_HTML("<A href=\"".$URL."\">".$URL."</A>");
950         } elseif (!headers_sent()) {
951                 // Load URL when headers are not sent
952                 @header ("Location: ".str_replace("&amp;", "&", $URL));
953         } else {
954                 // Output error message
955                 include(PATH."inc/header.php");
956                 OUTPUT_HTML(LOAD_URL_ERROR_1.$URL.LOAD_URL_ERROR_2);
957                 include(PATH."inc/footer.php");
958         }
959         exit();
960 }
961 //
962 function COMPILE_CODE($code, $simple = false, $constants = true, $full = true) {
963         global $SEC_CHARS, $URL_CHARS;
964         $ARRAY = $SEC_CHARS;
965
966         // Select smaller set of chars to replace when we e.g. want to compile URLs
967         if (!$full) $ARRAY = $URL_CHARS;
968
969         // Compile constants
970         if ($constants) {
971                 // BEFORE 0.2.1 : Language and data constants
972                 // WITH 0.2.1+  : Only language constants
973                 $code = str_replace("{--", '".', str_replace("--}", '."', $code));
974
975                 // BEFORE 0.2.1 : Not used
976                 // WITH 0.2.1+  : Data constants
977                 $code = str_replace("{!", '".', str_replace("!}", '."', $code));
978         }
979
980         // Compile QUOT and other non-HTML codes
981         foreach ($ARRAY['to'] as $k => $to) {
982                 // Do the reversed thing as in inc/libs/security_functions.php
983                 $code = str_replace($to, $ARRAY['from'][$k], $code);
984         }
985
986         // But shall I keep simple quotes for later use?
987         if ($simple) $code = str_replace("\'", "{QUOT}", $code);
988
989         // Find $content[bla][blub] entries
990         @preg_match_all('/\$(content|DATA)((\[([a-zA-Z0-9-_]+)\])*)/', $code, $matches);
991
992         // Are some matches found?
993         if ((count($matches) > 0) && (count($matches[0]) > 0)) {
994                 // Replace all matches
995                 $matchesFound = array();
996                 foreach ($matches[0] as $key=>$match) {
997                         // Avoid replacing matches multiple times
998                         if (!isset($matchesFound[$match])) {
999                                 // Not yet replaced!
1000                                 $code = str_replace($match, "\".".$match.".\"", $code);
1001                                 $matchesFound[$match] = 1;
1002                         }
1003
1004                         // Take all string elements
1005                         if (("".bigintval($matches[4][$key])."" != $matches[4][$key]) && (!isset($matchesFound[$key."_".$matches[4][$key]]))) {
1006                                 // Replace it in the code
1007                                 $code = str_replace("[".$matches[4][$key]."]", "['".$matches[4][$key]."']", $code);
1008                                 $matchesFound[$key."_".$matches[4][$key]] = 1;
1009                         }
1010                 }
1011         }
1012
1013         // Return compiled code
1014         return $code;
1015 }
1016 //
1017 /************************************************************************
1018  *                                                                      *
1019  * Gaenderter Sortier-Algorythmus, $array wird nach dem Array (!)       *
1020  * $a_sort sortiert:                                                    *
1021  *                                                                      *
1022  * $array - Das 3-dimensionale Array, das paralell sortiert werden soll *
1023  * $a_sort - Array, das die Sortiereihenfolge der ersten Elementeben    *
1024  * $primary_key - Prim.rschl.ssel aus $a_sort, nach dem sortiert wird   *
1025  * $order - Sortiereihenfolge: -1 = A-Z, 0 = keine, 1 = Z-A             *
1026  * $nums - true = Als Zahlen sortieren, false = Als Zeichen sortieren   *
1027  *                                                                      *
1028  * $a_sort muss Elemente enthalten, deren Wert Schluessel von $array    *
1029  * sind... Klingt kompliziert, suchen Sie mal mein Beispiel, dann sehen *
1030  * Sie, dass es doch nicht so schwer ist! :-)                           *
1031  *                                                                      *
1032  ************************************************************************/
1033 function array_pk_sort(&$array, $a_sort, $primary_key = 0, $order = -1, $nums = false)
1034 {
1035         $dummy = $array;
1036         while ($primary_key < count($a_sort))
1037         {
1038                 foreach ($dummy[$a_sort[$primary_key]] as $key=>$value)
1039                 {
1040                         foreach ($dummy[$a_sort[$primary_key]] as $key2=>$value2)
1041                         {
1042                                 $match = false;
1043                                 if (!$nums)
1044                                 {
1045                                         // Sort byte-by-byte (also numbers will be interpreted as chars! E.g.: "9" > "10")
1046                                         if (($key != $key2) && (strcmp(strtolower($dummy[$a_sort[$primary_key]][$key]), strtolower($dummy[$a_sort[$primary_key]][$key2])) == $order)) $match = true;
1047                                 }
1048                                  elseif ($key != $key2)
1049                                 {
1050                                         // Sort numbers (E.g.: 9 < 10)
1051                                         if (($dummy[$a_sort[$primary_key]][$key] < $dummy[$a_sort[$primary_key]][$key2]) && ($order == -1)) $match = true;
1052                                         if (($dummy[$a_sort[$primary_key]][$key] > $dummy[$a_sort[$primary_key]][$key2]) && ($order == 1))  $match = true;
1053                                 }
1054                                 if ($match)
1055                                 {
1056                                         // We have found two different values, so let's sort whole array
1057                                         foreach ($dummy as $sort_key=>$sort_val)
1058                                         {
1059                                                 $t                       = $dummy[$sort_key][$key];
1060                                                 $dummy[$sort_key][$key]  = $dummy[$sort_key][$key2];
1061                                                 $dummy[$sort_key][$key2] = $t;
1062                                                 unset($t);
1063                                         }
1064                                 }
1065                         }
1066                 }
1067
1068                 // Count one up
1069                 $primary_key++;
1070         }
1071
1072         // Write back sorted array
1073         $array = $dummy;
1074 }
1075 //
1076 function ADD_SELECTION($type, $DEFAULT, $prefix="", $id="0")
1077 {
1078         global $MONTH_DESCR; $OUT = "";
1079         if ($type == "yn")
1080         {
1081                 // This is a yes/no selection only!
1082                 if ($id > 0) $prefix .= "[".$id."]";
1083                 $OUT .= "    <SELECT name=\"".$prefix."\" class=\"register_select\" size=\"1\">\n";
1084         }
1085          else
1086         {
1087                 // Begin with regular selection box here
1088                 if (!empty($prefix)) $prefix .= "_";
1089                 $type2 = $type;
1090                 if ($id > 0) $type2 .= "[".$id."]";
1091                 $OUT .= "    <SELECT name=\"".strtolower($prefix.$type2)."\" class=\"register_select\" size=\"1\">\n";
1092         }
1093         switch ($type)
1094         {
1095         case "day": // Day
1096                 for ($idx = 1; $idx < 32; $idx++)
1097                 {
1098                         $OUT .= "      <OPTION value=\"".$idx."\"";
1099                         if ($DEFAULT == $idx) $OUT .= " selected=\"selected\"";
1100                         $OUT .= ">".$idx."</OPTION>\n";
1101                 }
1102                 break;
1103
1104         case "month": // Month
1105                 foreach ($MONTH_DESCR as $month=>$descr)
1106                 {
1107                         $OUT .= "      <OPTION value=\"".$month."\"";
1108                         if ($DEFAULT == $month) $OUT .= " selected=\"selected\"";
1109                         $OUT .= ">".$descr."</OPTION>\n";
1110                 }
1111                 break;
1112
1113         case "year": // Year
1114                 // Get current year
1115                 $YEAR = date('Y', time());
1116
1117                 // Check if the default value is larger than minimum and bigger than actual year
1118                 if (($DEFAULT > 1930) && ($DEFAULT >= $YEAR))
1119                 {
1120                         for ($idx = $YEAR; $idx < ($YEAR + 11); $idx++)
1121                         {
1122                                 $OUT .= "      <OPTION value=\"".$idx."\"";
1123                                 if ($DEFAULT == $idx) $OUT .= " selected=\"selected\"";
1124                                 $OUT .= ">".$idx."</OPTION>\n";
1125                         }
1126                 }
1127                  elseif ($DEFAULT == -1)
1128                 {
1129                         // Current year minus 1
1130                         for ($idx = 2003; $idx <= ($YEAR + 1); $idx++)
1131                         {
1132                                 $OUT .= "      <OPTION value=\"".$idx."\">".$idx."</OPTION>\n";
1133                         }
1134                 }
1135                  else
1136                 {
1137                         // Get current year and subtract 16 (for erotic content)
1138                         $OUT .= "      <OPTION value=\"1929\">&lt;1930</OPTION>\n";
1139                         $YEAR = date('Y', time()) - 16;
1140                         for ($idx = 1930; $idx <= $YEAR; $idx++)
1141                         {
1142                                 $OUT .= "      <OPTION value=\"".$idx."\"";
1143                                 if ($DEFAULT == $idx) $OUT .= " selected=\"selected\"";
1144                                 $OUT .= ">".$idx."</OPTION>\n";
1145                         }
1146                 }
1147                 break;
1148
1149         case "sec":
1150         case "min":
1151                 for ($idx = 0; $idx < 60; $idx+=5)
1152                 {
1153                         if (strlen($idx) == 1) $idx = "0".$idx;
1154                         $OUT .= "      <OPTION value=\"".$idx."\"";
1155                         if ($DEFAULT == $idx) $OUT .= " selected=\"selected\"";
1156                         $OUT .= ">".$idx."</OPTION>\n";
1157                 }
1158                 break;
1159
1160         case "hour":
1161                 for ($idx = 0; $idx < 24; $idx++)
1162                 {
1163                         if (strlen($idx) == 1) $idx = "0".$idx;
1164                         $OUT .= "      <OPTION value=\"".$idx."\"";
1165                         if ($DEFAULT == $idx) $OUT .= " selected=\"selected\"";
1166                         $OUT .= ">".$idx."</OPTION>\n";
1167                 }
1168                 break;
1169
1170         case "yn":
1171                 $OUT .= "      <OPTION value=\"Y\"";
1172                 if ($DEFAULT == 'Y') $OUT .= " selected=\"selected\"";
1173                 $OUT .= ">".YES."</OPTION>
1174       <OPTION value=\"N\"";
1175                 if ($DEFAULT == 'N') $OUT .= " selected=\"selected\"";
1176                 $OUT .= ">".NO."</OPTION>\n";
1177                 break;
1178         }
1179         $OUT .= "    </SELECT>\n";
1180         return $OUT;
1181 }
1182 //
1183 function TRANSLATE_YESNO($yn)
1184 {
1185         switch ($yn)
1186         {
1187                 case 'Y': $yn = YES; break;
1188                 case 'N': $yn = NO; break;
1189                 default : $yn = "??? (".$yn.")"; break;
1190         }
1191         return $yn;
1192 }
1193 //
1194 // Deprecated : $length
1195 // Optional   : $DATA
1196 //
1197 function GEN_RANDOM_CODE($length, $code, $uid, $DATA="")
1198 {
1199         global $_CONFIG;
1200
1201         // Build server string
1202         $server = $_SERVER['PHP_SELF'].":".getenv('HTTP_USER_AGENT').":".getenv('SERVER_SOFTWARE').":".getenv('REMOTE_ADDR').":".":".filemtime(PATH."inc/databases.php");
1203
1204         // Build key string
1205         $keys   = SITE_KEY.":".DATE_KEY.":".$_CONFIG['secret_key'].":".$_CONFIG['file_hash'].":".date("d-m-Y (l-F-T)", $_CONFIG['patch_ctime']).":".$_CONFIG['master_salt'];
1206
1207         // Build string from misc data
1208         $data   = $code.":".$uid.":".$DATA;
1209
1210         // Add more additional data
1211         if (isSessionVariableSet('u_hash'))                     $data .= ":".get_session('u_hash');
1212         if (isset($GLOBALS['userid']))                          $data .= ":".$GLOBALS['userid'];
1213         if (isSessionVariableSet('lifetime'))           $data .= ":".get_session('lifetime');
1214         if (isSessionVariableSet('mxchange_theme'))     $data .= ":".get_session('mxchange_theme');
1215         if (isSessionVariableSet('mx_lang'))            $data .= ":".GET_LANGUAGE();
1216         if (isset($GLOBALS['refid']))                           $data .= ":".$GLOBALS['refid'];
1217
1218         // Calculate number for generating the code
1219         $a = $code + _ADD - 1;
1220
1221         // Generate hash with master salt from modula of number with the prime number and other data
1222         $saltedHash = generateHash(($a % _PRIME).":".$server.":".$keys.":".$data.":".date("d-m-Y (l-F-T)", time()).":".$a, $_CONFIG['master_salt']);
1223
1224         // Create number from hash
1225         $rcode = hexdec(substr($saltedHash, strlen($_CONFIG['master_salt']), 9)) / abs(_MAX - $a + sqrt(_ADD)) / pi();
1226
1227         // At least 10 numbers shall be secure enought!
1228         $len = $_CONFIG['code_length'];
1229         if ($len == 0) $len = 10;
1230
1231         // Cut off requested counts of number
1232         $return = substr(str_replace('.', '', $rcode), 0, $len);
1233
1234         // Done building code
1235         return $return;
1236 }
1237 // Does only allow numbers
1238 function bigintval($num)
1239 {
1240         $ret = (int) preg_replace("/[^0123456789]/", "", $num);
1241         return $ret;
1242 }
1243 // Insert the code in $img_code into jpeg or PNG image
1244 function GENERATE_IMAGE($img_code, $header=true)
1245 {
1246         global $_CONFIG;
1247         if ((strlen($img_code) > 6) || (empty($img_code)) || ($_CONFIG['code_length'] == 0))
1248         {
1249                 // Stop execution of function here because of over-sized code length
1250                 return;
1251         }
1252          elseif (!$header)
1253         {
1254                 // Return in an HTML code code
1255                 return "<IMG src=\"".URL."/img.php?code=".$img_code."\">\n";
1256         }
1257
1258         switch ($_CONFIG['img_type'])
1259         {
1260         case "jpg":
1261                 // Loads JPEG image
1262                 $img = PATH."/theme/".GET_CURR_THEME()."/images/code_bg.jpg";
1263                 if ((file_exists($img)) && (is_readable($img)))
1264                 {
1265                         // Okay, load image and hide all errors
1266                         $image = @imagecreatefromjpeg($img);
1267                 }
1268                  else
1269                 {
1270                         // Exit function here
1271                         return;
1272                 }
1273                 break;
1274
1275         case "png":
1276                 // Loads PNG image
1277                 $img = PATH."/theme/".GET_CURR_THEME()."/images/code_bg.png";
1278                 if ((file_exists($img)) && (is_readable($img)))
1279                 {
1280                         // Okay, load image and hide all errors
1281                         $image = @imagecreatefrompng($img);
1282                 }
1283                  else
1284                 {
1285                         // Exit function here
1286                         return;
1287                 }
1288                 break;
1289         }
1290
1291         // Generate text color (red/green/blue; 0 = dark, 255 = bright)
1292         $text_color = imagecolorallocate($image, 0, 0, 0);
1293
1294         // Insert code into image
1295         imagestring($image, 5, 14, 2, $img_code, $text_color);
1296
1297         // Return to browser
1298         header ("Content-Type: image/".$_CONFIG['img_type']);
1299
1300         // Output image with matching image factory
1301         switch ($_CONFIG['img_type'])
1302         {
1303                 case "jpg": imagejpeg($image); break;
1304                 case "png": imagepng($image);  break;
1305         }
1306
1307         // Remove image from memory
1308         imagedestroy($image);
1309 }
1310 function CREATE_TIME_SELECTIONS($timestamp, $prefix="", $display="", $align="center", $return_array=false)
1311 {
1312         // Calculate 15-seconds timestamp (15-seconds-steps shall be fine ;) )
1313         $timestamp = round($timestamp / 15) * 15;
1314         // Do we have a leap year?
1315         $SWITCH = 0;
1316         $TEST = date('Y', time()) / 4;
1317         $M1 = date("m", time());
1318         $M2 = date("m", (time() + $timestamp));
1319         // If so and if current time is before 02/29 and estimated time is after 02/29 then add 86400 seconds (one day)
1320         if ((floor($TEST) == $TEST) && ($M1 == "02") && ($M2 > "02"))  $SWITCH = ONE_DAY;
1321         // First of all years...
1322         $Y = abs(floor($timestamp / (31536000 + $SWITCH)));
1323         // Next months...
1324         $M = abs(floor($timestamp / 2628000 - $Y * 12));
1325         // Next weeks
1326         $W = abs(floor($timestamp / 604800 - $Y * ((365 + $SWITCH / ONE_DAY) / 7) - ($M / 12 * (365 + $SWITCH / ONE_DAY) / 7)));
1327         // Next days...
1328         $D = abs(floor($timestamp / 86400 - $Y * (365 + $SWITCH / ONE_DAY) - ($M / 12 * (365 + $SWITCH / ONE_DAY)) - $W * 7));
1329         // Next hours...
1330         $h = abs(floor($timestamp / 3600 - $Y * (365 + $SWITCH / ONE_DAY) * 24 - ($M / 12 * (365 + $SWITCH / ONE_DAY) * 24) - $W * 7 * 24 - $D * 24));
1331         // Next minutes..
1332         $m = abs(floor($timestamp / 60 - $Y * (365 + $SWITCH / ONE_DAY) * 24 * 60 - ($M / 12 * (365 + $SWITCH / ONE_DAY) * 24 * 60) - $W * 7 * 24 * 60 - $D * 24 * 60 - $h * 60));
1333         // And at last seconds...
1334         $s = abs(floor($timestamp - $Y * (365 + $SWITCH / ONE_DAY) * 24 * 3600 - ($M / 12 * (365 + $SWITCH / ONE_DAY) * 24 * 3600) - $W * 7 * 24 * 3600 - $D * 24 * 3600 - $h * 3600 - $m * 60));
1335         //
1336         // Now we convert them in seconds...
1337         //
1338         if ($return_array)
1339         {
1340                 // Just put all data in an array for later use
1341                 $OUT = array(
1342                         'YEARS'   => $Y,
1343                         'MONTHS'  => $M,
1344                         'WEEKS'   => $W,
1345                         'DAYS'    => $D,
1346                         'HOURS'   => $h,
1347                         'MINUTES' => $m,
1348                         'SECONDS' => $s
1349                 );
1350         }
1351          else
1352         {
1353                 // Generate table
1354                 $OUT  = "<DIV align=\"".$align."\">\n";
1355                 $OUT .= "<TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"0\" class=\"admin_table dashed\">\n";
1356                 $OUT .= "<TR>\n";
1357                 if (ereg('Y', $display) || (empty($display)))
1358                 {
1359                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._YEARS."</STRONG></TD>\n";
1360                 }
1361                 if (ereg("M", $display) || (empty($display)))
1362                 {
1363                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._MONTHS."</STRONG></TD>\n";
1364                 }
1365                 if (ereg("W", $display) || (empty($display)))
1366                 {
1367                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._WEEKS."</STRONG></TD>\n";
1368                 }
1369                 if (ereg("D", $display) || (empty($display)))
1370                 {
1371                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._DAYS."</STRONG></TD>\n";
1372                 }
1373                 if (ereg("h", $display) || (empty($display)))
1374                 {
1375                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._HOURS."</STRONG></TD>\n";
1376                 }
1377                 if (ereg("m", $display) || (empty($display)))
1378                 {
1379                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._MINUTES."</STRONG></TD>\n";
1380                 }
1381                 if (ereg("s", $display) || (empty($display)))
1382                 {
1383                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">".SECS."</STRONG></TD>\n";
1384                 }
1385                 $OUT .= "</TR>\n";
1386                 $OUT .= "<TR>\n";
1387                 if (ereg('Y', $display) || (empty($display)))
1388                 {
1389                         // Generate year selection
1390                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_ye\" size=\"1\">\n";
1391                         for ($idx = 0; $idx <= 10; $idx++)
1392                         {
1393                                 $OUT .= "    <OPTION class=\"mini_select\" value=\"".$idx."\"";
1394                                 if ($idx == $Y) $OUT .= " selected default";
1395                                 $OUT .= ">".$idx."</OPTION>\n";
1396                         }
1397                         $OUT .= "  </SELECT></TD>\n";
1398                 }
1399                  else
1400                 {
1401                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_ye\" value=\"0\">\n";
1402                 }
1403                 if (ereg("M", $display) || (empty($display)))
1404                 {
1405                         // Generate month selection
1406                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_mo\" size=\"1\">\n";
1407                         for ($idx = 0; $idx <= 11; $idx++)
1408                         {
1409                                         $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1410                                 if ($idx == $M) $OUT .= " selected default";
1411                                 $OUT .= ">".$idx."</OPTION>\n";
1412                         }
1413                         $OUT .= "  </SELECT></TD>\n";
1414                 }
1415                  else
1416                 {
1417                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_mo\" value=\"0\">\n";
1418                 }
1419                 if (ereg("W", $display) || (empty($display)))
1420                 {
1421                         // Generate week selection
1422                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_we\" size=\"1\">\n";
1423                         for ($idx = 0; $idx <= 4; $idx++)
1424                         {
1425                                 $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1426                                 if ($idx == $W) $OUT .= " selected default";
1427                                 $OUT .= ">".$idx."</OPTION>\n";
1428                         }
1429                         $OUT .= "  </SELECT></TD>\n";
1430                 }
1431                  else
1432                 {
1433                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_we\" value=\"0\">\n";
1434                 }
1435                 if (ereg("D", $display) || (empty($display)))
1436                 {
1437                         // Generate day selection
1438                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_da\" size=\"1\">\n";
1439                         for ($idx = 0; $idx <= 31; $idx++)
1440                         {
1441                                 $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1442                                 if ($idx == $D) $OUT .= " selected default";
1443                                 $OUT .= ">".$idx."</OPTION>\n";
1444                         }
1445                         $OUT .= "  </SELECT></TD>\n";
1446                 }
1447                  else
1448                 {
1449                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_da\" value=\"0\">\n";
1450                 }
1451                 if (ereg("h", $display) || (empty($display)))
1452                 {
1453                         // Generate hour selection
1454                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_ho\" size=\"1\">\n";
1455                         for ($idx = 0; $idx <= 23; $idx++)
1456                         {
1457                                 $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1458                                 if ($idx == $h) $OUT .= " selected default";
1459                                 $OUT .= ">".$idx."</OPTION>\n";
1460                         }
1461                         $OUT .= "  </SELECT></TD>\n";
1462                 }
1463                  else
1464                 {
1465                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_ho\" value=\"0\">\n";
1466                 }
1467                 if (ereg("m", $display) || (empty($display)))
1468                 {
1469                         // Generate minute selection
1470                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_mi\" size=\"1\">\n";
1471                         for ($idx = 0; $idx <= 59; $idx++)
1472                         {
1473                                 $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1474                                 if ($idx == $m) $OUT .= " selected default";
1475                                 $OUT .= ">".$idx."</OPTION>\n";
1476                         }
1477                         $OUT .= "  </SELECT></TD>\n";
1478                 }
1479                  else
1480                 {
1481                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_mi\" value=\"0\">\n";
1482                 }
1483                 if (ereg("s", $display) || (empty($display)))
1484                 {
1485                         // Generate second selection
1486                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_se\" size=\"1\">\n";
1487                         for ($idx = 0; $idx <= 45; $idx+=15)
1488                         {
1489                                 $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1490                                 if ($idx == $s) $OUT .= " selected default";
1491                                 $OUT .= ">".$idx."</OPTION>\n";
1492                         }
1493                         $OUT .= "  </SELECT></TD>\n";
1494                 }
1495                  else
1496                 {
1497                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_se\" value=\"0\">\n";
1498                 }
1499                 $OUT .= "</TR>\n";
1500                 $OUT .= "</TABLE>\n";
1501                 $OUT .= "</DIV>\n";
1502                 // Return generated HTML code
1503         }
1504         return $OUT;
1505 }
1506 //
1507 function CREATE_TIMESTAMP_FROM_SELECTIONS($prefix, $POST) {
1508         $ret = "0";
1509         // Do we have a leap year?
1510         $SWITCH = 0;
1511         $TEST = date('Y', time()) / 4;
1512         $M1   = date("m", time());
1513         // If so and if current time is before 02/29 and estimated time is after 02/29 then add 86400 seconds (one day)
1514         if ((floor($TEST) == $TEST) && ($M1 == "02") && ($POST[$prefix."_mo"] > "02"))  $SWITCH = ONE_DAY;
1515         // First add years...
1516         $ret += $POST[$prefix."_ye"] * (31536000 + $SWITCH);
1517         // Next months...
1518         $ret += $POST[$prefix."_mo"] * 2628000;
1519         // Next weeks
1520         $ret += $POST[$prefix."_we"] * 604800;
1521         // Next days...
1522         $ret += $POST[$prefix."_da"] * 86400;
1523         // Next hours...
1524         $ret += $POST[$prefix."_ho"] * 3600;
1525         // Next minutes..
1526         $ret += $POST[$prefix."_mi"] * 60;
1527         // And at last seconds...
1528         $ret += $POST[$prefix."_se"];
1529         // Return calculated value
1530         return $ret;
1531 }
1532 // Sends out mail to all administrators
1533 function SEND_ADMIN_EMAILS_PRO($subj, $template, $content="", $UID="0") {
1534         // Trim template name
1535         $template = trim($template);
1536
1537         // Load email template
1538         $msg = LOAD_EMAIL_TEMPLATE($template, $content, $UID);
1539
1540         if (GET_EXT_VERSION("admins") < "0.4.0") {
1541                 // Older version detected!
1542                 return SEND_ADMIN_EMAILS($subj, $msg);
1543         }
1544
1545         // Check which admin shall receive this mail
1546         $result = SQL_QUERY_ESC("SELECT DISTINCT admin_id FROM "._MYSQL_PREFIX."_admins_mails WHERE mail_template='%s' ORDER BY admin_id",
1547          array($template), __FILE__, __LINE__);
1548         if (SQL_NUMROWS($result) == 0) {
1549                 // Create new entry (to all admins)
1550                 $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_admins_mails (admin_id, mail_template) VALUES (0, '%s')",
1551                  array($template), __FILE__, __LINE__);
1552         } else {
1553                 // Load admin IDs...
1554                 $aids = array();
1555                 while(list($aid) = SQL_FETCHROW($result)) {
1556                         $aids[] = $aid;
1557                 }
1558
1559                 // Free memory
1560                 SQL_FREERESULT($result);
1561
1562                 // "implode" IDs and query string
1563                 $aid = implode(",", $aids);
1564                 if ($aid == "-1") {
1565                         // Add line to userlog
1566                         USERLOG_ADD_LINE($subj, $msg, $UID);
1567                         return;
1568                 } elseif ($aid == "0") {
1569                         // Select all email adresses
1570                         $result = SQL_QUERY("SELECT email FROM "._MYSQL_PREFIX."_admins ORDER BY id", __FILE__, __LINE__);
1571                 } else {
1572                         // If Admin-ID is not "to-all" select
1573                         $result = SQL_QUERY_ESC("SELECT email FROM "._MYSQL_PREFIX."_admins WHERE id IN (%s) ORDER BY id", array($aid), __FILE__, __LINE__);
1574                 }
1575         }
1576
1577         // Load email addresses and send away
1578         while (list($email) = SQL_FETCHROW($result)) {
1579                 SEND_EMAIL($email, $subj, $msg);
1580         }
1581
1582         // Free memory
1583         SQL_FREERESULT($result);
1584 }
1585 //
1586 function CREATE_FANCY_TIME($stamp) {
1587         // Get data array with years/months/weeks/days/...
1588         $data = CREATE_TIME_SELECTIONS($stamp, "", "", "", true);
1589         $ret = "";
1590         foreach($data as $k=>$v) {
1591                 if ($v > 0) {
1592                         // Value is greater than 0 "eval" data to return string
1593                         $eval = "\$ret .= \", \".\$v.\" \"._".strtoupper($k).";";
1594                         eval($eval);
1595                         break;
1596                 }
1597         }
1598
1599         // Remove first "comma,null" string
1600         $ret = substr($ret, 2);
1601         return $ret;
1602 }
1603 //
1604 function ADD_EMAIL_NAV($PAGES, $offset, $show_form, $colspan, $return=false) {
1605         $SEP = ""; $TOP = "";
1606         if (!$show_form) {
1607                 $TOP = " top2";
1608                 $SEP = "<TR><TD colspan=\"".$colspan."\" class=\"seperator\">&nbsp;</TD></TR>";
1609         }
1610
1611         $NAV = "";
1612         for ($page = 1; $page <= $PAGES; $page++) {
1613                 // Is the page currently selected or shall we generate a link to it?
1614                 if (($page == $_GET['page']) || ((empty($_GET['page'])) && ($page == "1"))) {
1615                         // Is currently selected, so only highlight it
1616                         $NAV .= "<STRONG>-";
1617                 } else {
1618                         // Open anchor tag and add base URL
1619                         $NAV .= "<A href=\"".URL."/modules.php?module=admin&amp;what=".$GLOBALS['what']."&amp;page=".$page."&amp;offset=".$offset;
1620
1621                         // Add userid when we shall show all mails from a single member
1622                         if ((isset($_GET['u_id'])) && (bigintval($_GET['u_id']) > 0)) $NAV .= "&amp;u_id=".bigintval($_GET['u_id']);
1623
1624                         // Close open anchor tag
1625                         $NAV .= "\">";
1626                 }
1627                 $NAV .= $page;
1628                 if (($page == $_GET['page']) || ((empty($_GET['page'])) && ($page == "1"))) {
1629                         // Is currently selected, so only highlight it
1630                         $NAV .= "-</STRONG>";
1631                 } else {
1632                         // Close anchor tag
1633                         $NAV .= "</A>";
1634                 }
1635
1636                 // Add seperator if we have not yet reached total pages
1637                 if ($page < $PAGES) $NAV .= "&nbsp;|&nbsp;";
1638         }
1639
1640         // Define constants only once
1641         if (!defined('__NAV_OUTPUT')) {
1642                 define('__NAV_OUTPUT' , $NAV);
1643                 define('__NAV_COLSPAN', $colspan);
1644                 define('__NAV_TOP'    , $TOP);
1645                 define('__NAV_SEP'    , $SEP);
1646         }
1647
1648         // Load navigation template
1649         $OUT = LOAD_TEMPLATE("admin_email_nav_row", true);
1650
1651         if ($return) {
1652                 // Return generated HTML-Code
1653                 return $OUT;
1654         } else {
1655                 // Output HTML-Code
1656                 OUTPUT_HTML($OUT);
1657         }
1658 }
1659
1660 //
1661 function MXCHANGE_OPEN($script) {
1662         // Compile the script name
1663         $script = COMPILE_CODE($script);
1664
1665         // Use default SERVER_URL by default... ;) So?
1666         $url = SERVER_URL;
1667         if (substr($script, 0, 7) == "http://") {
1668                 // Use the hostname from script URL as new hostname
1669                 $url = substr($script, 7);
1670                 $extract = explode("/", $url);
1671                 $url = $extract[0];
1672                 // Done extracting the URL :)
1673         }
1674
1675         // Extract host name
1676         $host = str_replace("http://", "", $url);
1677         if (ereg("/", $host)) $host = substr($host, 0, strpos($host, "/"));
1678
1679         // Generate relative URL
1680         $script = substr($script, (strlen($url) + 7));
1681         if (substr($script, 0, 1) == "/") $script = substr($script, 1);
1682
1683         // Open connection
1684         $fp = @fsockopen($host, 80, $errno, $errdesc, 30);
1685         if (!$fp)
1686         {
1687                 // Failed!
1688                 return array("", "", "");
1689         }
1690
1691         // Generate request header
1692         $request  = "GET /".trim($script)." HTTP/1.0\r\n";
1693         $request .= "Host: ".$host."\r\n";
1694         $request .= "Referer: ".URL."/admin.php\r\n";
1695         $request .= "User-Agent: ".TITLE."/".FULL_VERSION."\r\n\r\n";
1696
1697         // Initialize array
1698         $response = array();
1699
1700         // Write request
1701         fputs($fp, $request);
1702
1703         // Read response
1704         while(!feof($fp)) {
1705                 $response[] = fgets($fp, 1024);
1706         }
1707
1708         // Close socket
1709         fclose($fp);
1710
1711         // Was the request successfull?
1712         if ((!ereg("200 OK", $response[0])) && (empty($response[0]))) {
1713                 // Not found / access forbidden
1714                 $response = array("", "", "");
1715         }
1716
1717         // Return response
1718         return $response;
1719 }
1720 // Taken from www.php.net eregi() user comments
1721 function VALIDATE_EMAIL($email) {
1722         // Compile email
1723         $email = COMPILE_CODE($email);
1724
1725         // Check first part of email address
1726         $first = "[-a-z0-9!#$%&\'*+/=?^_<{|}~]+(\.[-a-zA-Z0-9!#$%&\'*+/=?^_<{|}~]+)*";
1727
1728         //  Check domain
1729         $domain = "[a-z0-9-]+(\.[a-z0-9-]{2,5})+";
1730
1731         // Generate pattern
1732         $regex = "^".$first."@".$domain."$";
1733
1734         // Return check result
1735         return eregi($regex, $email);
1736 }
1737 // Function taken from user comments on www.php.net / function eregi()
1738 function VALIDATE_URL ($URL, $compile=true) {
1739         // Trim URL a little
1740         $URL = trim(urldecode($URL));
1741         //* DEBUG: */ echo $URL."<br />";
1742
1743         // Compile some chars out...
1744         if ($compile) $URL = COMPILE_CODE($URL, false, false, false);
1745         //* DEBUG: */ echo $URL."<br />";
1746
1747         // Check for the extension filter
1748         if (EXT_IS_ACTIVE("filter")) {
1749                 // Use the extension's filter set
1750                 return FILTER_VALIDATE_URL($URL, false);
1751         }
1752
1753         // If not installed, perform a simple test. Just make it sure there is always a http:// or
1754         // https:// in front of the URLs
1755         return (((substr($URL, 0, 7) == "http://") || (substr($URL, 0, 8) == "https://")) && (strlen($URL) >= 12));
1756 }
1757 //
1758 function MEMBER_ACTION_LINKS($uid, $status="") {
1759         // Define all main targets
1760         $TARGETS = array("del_user", "edit_user", "lock_user", "add_points", "sub_points");
1761
1762         // Begin of navigation links
1763         $eval = "\$OUT = \"[&nbsp;";
1764
1765         foreach ($TARGETS as $tar) {
1766                 $eval .= "<SPAN class=\\\"admin_user_link\\\"><A href=\\\"".URL."/modules.php?module=admin&amp;what=".$tar."&amp;u_id=".$uid."\\\" title=\\\"\".ADMIN_LINK_";
1767                 //* DEBUG: */ echo "*".$tar."/".$status."*<br />\n";
1768                 if (($tar == "lock_user") && ($status == "LOCKED")) {
1769                         // Locked accounts shall be unlocked
1770                         $eval .= "UNLOCK_USER";
1771                 } else {
1772                         // All other status is fine
1773                         $eval .= strtoupper($tar);
1774                 }
1775                 $eval .= "_TITLE.\"\\\">\".ADMIN_";
1776                 if (($tar == "lock_user") && ($status == "LOCKED")) {
1777                         // Locked accounts shall be unlocked
1778                         $eval .= "UNLOCK_USER";
1779                 } else {
1780                         // All other status is fine
1781                         $eval .= strtoupper($tar);
1782                 }
1783                 $eval .= ".\"</A></SPAN>&nbsp;|&nbsp;";
1784         }
1785
1786         // Finish navigation link
1787         $eval = substr($eval, 0, -7) . "]\";";
1788         eval($eval);
1789
1790         // Return string
1791         return $OUT;
1792 }
1793 // Function for backward-compatiblity
1794 function ADD_CATEGORY_TABLE ($MODE, $return=false) {
1795         // Load it from the register extension
1796         return REGISTER_ADD_CATEGORY_TABLE ($MODE, $return);
1797 }
1798 // Generate an email link
1799 function CREATE_EMAIL_LINK($email, $table="admins") {
1800         // Default email link (INSECURE! Spammer can read this by harvester programs)
1801         $EMAIL = "mailto:".$email;
1802
1803         // Check for several extensions
1804         if ((EXT_IS_ACTIVE("admins")) && ($table == "admins")) {
1805                 // Create email link for contacting admin in guest area
1806                 $EMAIL = ADMINS_CREATE_EMAIL_LINK($email);
1807         } elseif ((GET_EXT_VERSION("user") >= "0.3.3") && ($table == "user_data")) {
1808                 // Create email link for contacting a member within admin area (or later in other areas, too?)
1809                 $EMAIL = USER_CREATE_EMAIL_LINK($email);
1810         } elseif ((EXT_IS_ACTIVE("sponsor")) && ($table == "sponsor_data")) {
1811                 // Create email link to contact sponsor within admin area (or like the link above?)
1812                 $EMAIL = SPONSOR_CREATE_EMAIL_LINK($email);
1813         }
1814
1815         // Shall I close the link when there is no admin?
1816         if ((!IS_ADMIN()) && ($EMAIL == $email)) $EMAIL = "#"; // Closed!
1817
1818         // Return email link
1819         return $EMAIL;
1820 }
1821 // Generate a hash for extra-security for all passwords
1822 function generateHash($plainText, $salt = "") {
1823         global $_CONFIG, $_SERVER;
1824
1825         // Is the required extension "sql_patches" there?
1826         if ((GET_EXT_VERSION("sql_patches") < "0.3.6") || (GET_EXT_VERSION("sql_patches") == "")) {
1827                 // Extension sql_patches is missing/outdated so we return the plain text
1828                 return $plainText;
1829         }
1830
1831         // When the salt is empty build a new one, else use the first x configured characters as the salt
1832         if ($salt == "") {
1833                 // Build server string
1834                 $server = $_SERVER['PHP_SELF'].":".getenv('HTTP_USER_AGENT').":".getenv('SERVER_SOFTWARE').":".getenv('REMOTE_ADDR').":".":".filemtime(PATH."inc/databases.php");
1835
1836                 // Build key string
1837                 $keys   = SITE_KEY.":".DATE_KEY.":".$_CONFIG['secret_key'].":".$_CONFIG['file_hash'].":".date("d-m-Y (l-F-T)", $_CONFIG['patch_ctime']).":".$_CONFIG['master_salt'];
1838
1839                 // Additional data
1840                 $data = $plainText.":".uniqid(rand(), true).":".time();
1841
1842                 // Calculate number for generating the code
1843                 $a = time() + _ADD - 1;
1844
1845                 // Generate SHA1 sum from modula of number and the prime number
1846                 $sha1 = sha1(($a % _PRIME).$server.":".$keys.":".$data.":".date("d-m-Y (l-F-T)", time()).":".$a);
1847                 //* DEBUG: */ echo "SHA1=".$sha1." (".strlen($sha1).")<br>";
1848                 $sha1 = scrambleString($sha1);
1849                 //* DEBUG: */ echo "Scrambled=".$sha1." (".strlen($sha1).")<br>";
1850                 //* DEBUG: */ $sha1b = descrambleString($sha1);
1851                 //* DEBUG: */ echo "Descrambled=".$sha1b." (".strlen($sha1b).")<br>";
1852
1853                 // Generate the password salt string
1854                 $salt = substr($sha1, 0, $_CONFIG['salt_length']);
1855                 //* DEBUG: */ echo $salt." (".strlen($salt).")<br />";
1856         }
1857          else
1858         {
1859                 $salt = substr($salt, 0, $_CONFIG['salt_length']);
1860         }
1861
1862         // Return hash
1863         return $salt . sha1($salt . $plainText);
1864 }
1865 //
1866 function scrambleString($str) {
1867         global $_CONFIG;
1868
1869         // Init
1870         $scrambled = "";
1871
1872         // Final check, in case of failture it will return unscrambled string
1873         if (strlen($str) > 40) {
1874                 // The string is to long
1875                 return $str;
1876         } elseif (strlen($str) == 40) {
1877                 // From database
1878                 $scrambleNums = explode(":", $_CONFIG['pass_scramble']);
1879         } else {
1880                 // Generate new numbers
1881                 $scrambleNums = explode(":", genScrambleString(strlen($str)));
1882         }
1883
1884         // Scramble string here
1885         //* DEBUG: */ echo "***Original=".$str."***<br />";
1886         for ($idx = 0; $idx < strlen($str); $idx++) {
1887                 // Get char on scrambled position
1888                 $char = substr($str, $scrambleNums[$idx], 1);
1889
1890                 // Add it to final output string
1891                 $scrambled .= $char;
1892         }
1893
1894         // Return scrambled string
1895         //* DEBUG: */ echo "***Scrambled=".$scrambled."***<br />";
1896         return $scrambled;
1897 }
1898 //
1899 function descrambleString($str)
1900 {
1901         global $_CONFIG;
1902         // Scramble only 40 chars long strings
1903         if (strlen($str) != 40) return $str;
1904
1905         // Load numbers from config
1906         $scrambleNums = explode(":", $_CONFIG['pass_scramble']);
1907
1908         // Validate numbers
1909         if (count($scrambleNums) != 40) return $str;
1910
1911         // Begin descrambling
1912         $orig = str_repeat(" ", 40);
1913         //* DEBUG: */ echo "+++Scrambled=".$str."+++<br />";
1914         for ($idx = 0; $idx < 40; $idx++)
1915         {
1916                 $char = substr($str, $idx, 1);
1917                 $orig = substr_replace($orig, $char, $scrambleNums[$idx], 1);
1918         }
1919
1920         // Return scrambled string
1921         //* DEBUG: */ echo "+++Original=".$orig."+++<br />";
1922         return $orig;
1923 }
1924 //
1925 function genScrambleString($len) {
1926         // Prepare randomizer and array for the numbers
1927         mt_srand((double) microtime() * 1000000);
1928         $scrambleNumbers = array();
1929
1930         // First we need to setup randomized numbers from 0 to 31
1931         for ($idx = 0; $idx < $len; $idx++) {
1932                 // Generate number
1933                 $rand = mt_rand(0, ($len -1));
1934
1935                 // Check for it by creating more numbers
1936                 while (array_key_exists($rand, $scrambleNumbers)) {
1937                         $rand = mt_rand(0, ($len -1));
1938                 }
1939
1940                 // Add number
1941                 $scrambleNumbers[$rand] = $rand;
1942         }
1943
1944         // So let's create the string for storing it in database
1945         $scrambleString = implode(":", $scrambleNumbers);
1946         return $scrambleString;
1947 }
1948 // Append data like session ID referral ID to the given URL which would
1949 // normally be stored in cookies
1950 function ADD_URL_DATA($URL)
1951 {
1952         global $_CONFIG;
1953         $ADD = "";
1954
1955         // Determine URL binder
1956         $BIND = "?";
1957         if (strpos($URL, "?") !== false) $BIND = "&";
1958
1959         if ((!defined('__COOKIES')) || ((!__COOKIES))) {
1960                 // Cookies are not accepted
1961                 if ((!empty($_GET['refid'])) && (strpos($URL, "refid=") == 0)) {
1962                         // Cookie found in URL
1963                         $ADD .= $BIND."refid=".bigintval($_GET['refid']);
1964                 } elseif ((GET_EXT_VERSION("sql_patches") != "") && ($_CONFIG['def_refid'] > 0)) {
1965                         // Not found! So let's set default here
1966                         $ADD .= $BIND."refid=".$_CONFIG['def_refid'];
1967                 }
1968
1969                 // Is there already added data? Then change the binder
1970                 if (!empty($ADD)) $BIND = "&";
1971
1972                 // Add session ID
1973                 if ((!empty($_GET['PHPSESSID'])) && (strpos($URL, "PHPSESSID=") == 0)) {
1974                         // Add session from URL
1975                         $ADD .= $BIND."PHPSESSID=".SQL_ESCAPE(strip_tags($_GET['PHPSESSID']));
1976                 } else {
1977                         // Add current session
1978                         $ADD .= $BIND."PHPSESSID=".session_id();
1979                 }
1980         }
1981
1982         // Add all together and return it
1983         return $URL.$ADD;
1984 }
1985 //
1986 function generatePassString($passHash) {
1987         global $_CONFIG;
1988
1989         // Return vanilla password hash
1990         $ret = $passHash;
1991
1992         // Is a secret key and master salt already initialized?
1993         if ((!empty($_CONFIG['secret_key'])) && (!empty($_CONFIG['master_salt']))) {
1994                 // Only calculate when the secret key is generated
1995                 $newHash = ""; $start = 9;
1996                 for ($idx = 0; $idx < 10; $idx++) {
1997                         $part1 = hexdec(substr($passHash, $start, 4));
1998                         $part2 = hexdec(substr($_CONFIG['secret_key'], $start, 4));
1999                         $mod = dechex($idx);
2000                         if ($part1 > $part2) {
2001                                 $mod = dechex(sqrt(($part1 - $part2) * _PRIME / pi()));
2002                         } elseif ($part2 > $part1) {
2003                                 $mod = dechex(sqrt(($part2 - $part1) * _PRIME / pi()));
2004                         }
2005                         $mod = substr(round($mod), 0, 4);
2006                         $mod = str_repeat('0', 4-strlen($mod)).$mod;
2007                         //* DEBUG: */ echo "*".$start."=".$mod."*<br>";
2008                         $start += 4;
2009                         $newHash .= $mod;
2010                 }
2011
2012                 //* DEBUG: */ die($passHash."<br>".$newHash." (".strlen($newHash).")");
2013                 $ret = generateHash($newHash, $_CONFIG['master_salt']);
2014         }
2015
2016         // Return result
2017         return $ret;
2018 }
2019 // Fix "deleted" cookies
2020 function FIX_DELETED_COOKIES ($cookies) {
2021         // Is this an array with entries?
2022         if ((is_array($cookies)) && (count($cookies) > 0)) {
2023                 // Then check all cookies if they are marked as deleted!
2024                 foreach ($cookies as $cookieName) {
2025                         // Is the cookie set to "deleted"?
2026                         if (get_session($cookieName) == "deleted") {
2027                                 set_session($cookieName, "");
2028                         }
2029                 }
2030         }
2031 }
2032 // Output error messages in a fasioned way and die...
2033 function mxchange_die ($msg) {
2034         global $footer;
2035
2036         // Load the message template
2037         LOAD_TEMPLATE("admin_settings_saved", false, $msg);
2038
2039         // Load footer
2040         include(PATH."inc/footer.php");
2041
2042         // Exit explicitly
2043         exit;
2044 }
2045
2046 // Display parsing time and number of SQL queries in footer
2047 function DISPLAY_PARSING_TIME_FOOTER() {
2048         global $startTime, $_CONFIG;
2049         $endTime = microtime(true);
2050
2051         // Is the timer started?
2052         if (!isset($GLOBALS['startTime'])) {
2053                 // Abort here
2054                 return false;
2055         }
2056
2057         // "Explode" both times
2058         $start = explode(" ", $GLOBALS['startTime']);
2059         $end = explode(" ", $endTime);
2060         $runTime = $end[0] - $start[0];
2061         if ($runTime < 0) $runTime = 0;
2062         $runTime = TRANSLATE_COMMA($runTime);
2063
2064         // Prepare output
2065         $content = array(
2066                 'runtime'               => $runTime,
2067                 'numSQLs'               => ($_CONFIG['sql_count'] + 1),
2068                 'numTemplates'  => ($_CONFIG['num_templates'] + 1)
2069         );
2070
2071         // Load the template
2072         LOAD_TEMPLATE("footer_stats", false, $content);
2073 }
2074
2075 // Unset/set session variables
2076 function set_session ($var, $value) {
2077         global $CSS;
2078         // Abort in CSS mode here
2079         if ($CSS == 1) return true;
2080
2081         // Trim value and session variable
2082         $var = trim(SQL_ESCAPE($var)); $value = trim($value);
2083
2084         // Is the session variable set?
2085         if (("".$value."" == "") && (isSessionVariableSet($var))) {
2086                 // Remove the session
2087                 //* DEBUG: */ echo "UNSET:".$var."=".get_session($var)."<br />\n";
2088                 unset($_SESSION[$var]);
2089                 return session_unregister($var);
2090         } elseif (("".$value."" != "") && (!isSessionVariableSet($var))) {
2091                 // Set session
2092                 //* DEBUG: */ echo "SET:".$var."=".$value."<br />\n";
2093                 $_SESSION[$var] =  $value;
2094                 return session_register($var);
2095         }
2096
2097         // Return always true if the session variable is already set.
2098         // Keept me busy for a longer while...
2099         //* DEBUG: */ echo "IGNORED:".$var."=".$value."<br />\n";
2100         return true;
2101 }
2102 // Check wether a boolean constant is set
2103 // Taken from user comments in PHP documentation for function constant()
2104 function isBooleanConstantAndTrue($constname) { // : Boolean
2105         $res = false;
2106         if (defined($constname)) $res = (constant($constname) === true);
2107         return($res);
2108 }
2109
2110 // Check wether a session variable is set
2111 function isSessionVariableSet($var) {
2112         return (isset($_SESSION[$var]));
2113 }
2114
2115 // Returns wether the value of the session variable or NULL if not set
2116 function get_session($var) {
2117         if (!isset($_SESSION)) session_start();
2118
2119         // Default is not found! ;-)
2120         $value = null;
2121
2122         // Is the variable there?
2123         if (isSessionVariableSet($var)) {
2124                 // Then  get it secured!
2125                 $value = SQL_ESCAPE($_SESSION[$var]);
2126         }
2127
2128         // Return the value
2129         return $value;
2130 }
2131
2132 //
2133 //////////////////////////////////////////////
2134 //                                          //
2135 // AUTOMATICALLY RE-GNERATED FUNCTIONS ONLY //
2136 //                                          //
2137 //////////////////////////////////////////////
2138 //
2139 if (!function_exists('html_entity_decode'))
2140 {
2141         // Taken from documentation on www.php.net
2142         function html_entity_decode($string)
2143         {
2144                 $trans_tbl = get_html_translation_table(HTML_ENTITIES);
2145                 $trans_tbl = array_flip($trans_tbl);
2146                 return strtr($string, $trans_tbl);
2147         }
2148 }
2149 //
2150 ?>