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