Fix for deleting email
[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)
1220 {
1221         $ret = (int) preg_replace("/[^0123456789]/", "", $num);
1222         return $ret;
1223 }
1224 // Insert the code in $img_code into jpeg or PNG image
1225 function GENERATE_IMAGE($img_code, $header=true)
1226 {
1227         global $_CONFIG;
1228         if ((strlen($img_code) > 6) || (empty($img_code)) || ($_CONFIG['code_length'] == 0))
1229         {
1230                 // Stop execution of function here because of over-sized code length
1231                 return;
1232         }
1233          elseif (!$header)
1234         {
1235                 // Return in an HTML code code
1236                 return "<IMG src=\"".URL."/img.php?code=".$img_code."\">\n";
1237         }
1238
1239         switch ($_CONFIG['img_type'])
1240         {
1241         case "jpg":
1242                 // Loads JPEG image
1243                 $img = PATH."/theme/".GET_CURR_THEME()."/images/code_bg.jpg";
1244                 if ((file_exists($img)) && (is_readable($img)))
1245                 {
1246                         // Okay, load image and hide all errors
1247                         $image = @imagecreatefromjpeg($img);
1248                 }
1249                  else
1250                 {
1251                         // Exit function here
1252                         return;
1253                 }
1254                 break;
1255
1256         case "png":
1257                 // Loads PNG image
1258                 $img = PATH."/theme/".GET_CURR_THEME()."/images/code_bg.png";
1259                 if ((file_exists($img)) && (is_readable($img)))
1260                 {
1261                         // Okay, load image and hide all errors
1262                         $image = @imagecreatefrompng($img);
1263                 }
1264                  else
1265                 {
1266                         // Exit function here
1267                         return;
1268                 }
1269                 break;
1270         }
1271
1272         // Generate text color (red/green/blue; 0 = dark, 255 = bright)
1273         $text_color = imagecolorallocate($image, 0, 0, 0);
1274
1275         // Insert code into image
1276         imagestring($image, 5, 14, 2, $img_code, $text_color);
1277
1278         // Return to browser
1279         header ("Content-Type: image/".$_CONFIG['img_type']);
1280
1281         // Output image with matching image factory
1282         switch ($_CONFIG['img_type'])
1283         {
1284                 case "jpg": imagejpeg($image); break;
1285                 case "png": imagepng($image);  break;
1286         }
1287
1288         // Remove image from memory
1289         imagedestroy($image);
1290 }
1291 function CREATE_TIME_SELECTIONS($timestamp, $prefix="", $display="", $align="center", $return_array=false)
1292 {
1293         // Calculate 15-seconds timestamp (15-seconds-steps shall be fine ;) )
1294         $timestamp = round($timestamp / 15) * 15;
1295         // Do we have a leap year?
1296         $SWITCH = 0;
1297         $TEST = date('Y', time()) / 4;
1298         $M1 = date("m", time());
1299         $M2 = date("m", (time() + $timestamp));
1300         // If so and if current time is before 02/29 and estimated time is after 02/29 then add 86400 seconds (one day)
1301         if ((floor($TEST) == $TEST) && ($M1 == "02") && ($M2 > "02"))  $SWITCH = ONE_DAY;
1302         // First of all years...
1303         $Y = abs(floor($timestamp / (31536000 + $SWITCH)));
1304         // Next months...
1305         $M = abs(floor($timestamp / 2628000 - $Y * 12));
1306         // Next weeks
1307         $W = abs(floor($timestamp / 604800 - $Y * ((365 + $SWITCH / ONE_DAY) / 7) - ($M / 12 * (365 + $SWITCH / ONE_DAY) / 7)));
1308         // Next days...
1309         $D = abs(floor($timestamp / 86400 - $Y * (365 + $SWITCH / ONE_DAY) - ($M / 12 * (365 + $SWITCH / ONE_DAY)) - $W * 7));
1310         // Next hours...
1311         $h = abs(floor($timestamp / 3600 - $Y * (365 + $SWITCH / ONE_DAY) * 24 - ($M / 12 * (365 + $SWITCH / ONE_DAY) * 24) - $W * 7 * 24 - $D * 24));
1312         // Next minutes..
1313         $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));
1314         // And at last seconds...
1315         $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));
1316         //
1317         // Now we convert them in seconds...
1318         //
1319         if ($return_array)
1320         {
1321                 // Just put all data in an array for later use
1322                 $OUT = array(
1323                         'YEARS'   => $Y,
1324                         'MONTHS'  => $M,
1325                         'WEEKS'   => $W,
1326                         'DAYS'    => $D,
1327                         'HOURS'   => $h,
1328                         'MINUTES' => $m,
1329                         'SECONDS' => $s
1330                 );
1331         }
1332          else
1333         {
1334                 // Generate table
1335                 $OUT  = "<DIV align=\"".$align."\">\n";
1336                 $OUT .= "<TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"0\" class=\"admin_table dashed\">\n";
1337                 $OUT .= "<TR>\n";
1338                 if (ereg('Y', $display) || (empty($display)))
1339                 {
1340                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._YEARS."</STRONG></TD>\n";
1341                 }
1342                 if (ereg("M", $display) || (empty($display)))
1343                 {
1344                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._MONTHS."</STRONG></TD>\n";
1345                 }
1346                 if (ereg("W", $display) || (empty($display)))
1347                 {
1348                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._WEEKS."</STRONG></TD>\n";
1349                 }
1350                 if (ereg("D", $display) || (empty($display)))
1351                 {
1352                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._DAYS."</STRONG></TD>\n";
1353                 }
1354                 if (ereg("h", $display) || (empty($display)))
1355                 {
1356                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._HOURS."</STRONG></TD>\n";
1357                 }
1358                 if (ereg("m", $display) || (empty($display)))
1359                 {
1360                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">"._MINUTES."</STRONG></TD>\n";
1361                 }
1362                 if (ereg("s", $display) || (empty($display)))
1363                 {
1364                         $OUT .= "  <TD align=\"center\" class=\"admin_title bottom\"><STRONG class=\"tiny\">".SECS."</STRONG></TD>\n";
1365                 }
1366                 $OUT .= "</TR>\n";
1367                 $OUT .= "<TR>\n";
1368                 if (ereg('Y', $display) || (empty($display)))
1369                 {
1370                         // Generate year selection
1371                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_ye\" size=\"1\">\n";
1372                         for ($idx = 0; $idx <= 10; $idx++)
1373                         {
1374                                 $OUT .= "    <OPTION class=\"mini_select\" value=\"".$idx."\"";
1375                                 if ($idx == $Y) $OUT .= " selected default";
1376                                 $OUT .= ">".$idx."</OPTION>\n";
1377                         }
1378                         $OUT .= "  </SELECT></TD>\n";
1379                 }
1380                  else
1381                 {
1382                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_ye\" value=\"0\">\n";
1383                 }
1384                 if (ereg("M", $display) || (empty($display)))
1385                 {
1386                         // Generate month selection
1387                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_mo\" size=\"1\">\n";
1388                         for ($idx = 0; $idx <= 11; $idx++)
1389                         {
1390                                         $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1391                                 if ($idx == $M) $OUT .= " selected default";
1392                                 $OUT .= ">".$idx."</OPTION>\n";
1393                         }
1394                         $OUT .= "  </SELECT></TD>\n";
1395                 }
1396                  else
1397                 {
1398                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_mo\" value=\"0\">\n";
1399                 }
1400                 if (ereg("W", $display) || (empty($display)))
1401                 {
1402                         // Generate week selection
1403                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_we\" size=\"1\">\n";
1404                         for ($idx = 0; $idx <= 4; $idx++)
1405                         {
1406                                 $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1407                                 if ($idx == $W) $OUT .= " selected default";
1408                                 $OUT .= ">".$idx."</OPTION>\n";
1409                         }
1410                         $OUT .= "  </SELECT></TD>\n";
1411                 }
1412                  else
1413                 {
1414                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_we\" value=\"0\">\n";
1415                 }
1416                 if (ereg("D", $display) || (empty($display)))
1417                 {
1418                         // Generate day selection
1419                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_da\" size=\"1\">\n";
1420                         for ($idx = 0; $idx <= 31; $idx++)
1421                         {
1422                                 $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1423                                 if ($idx == $D) $OUT .= " selected default";
1424                                 $OUT .= ">".$idx."</OPTION>\n";
1425                         }
1426                         $OUT .= "  </SELECT></TD>\n";
1427                 }
1428                  else
1429                 {
1430                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_da\" value=\"0\">\n";
1431                 }
1432                 if (ereg("h", $display) || (empty($display)))
1433                 {
1434                         // Generate hour selection
1435                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_ho\" size=\"1\">\n";
1436                         for ($idx = 0; $idx <= 23; $idx++)
1437                         {
1438                                 $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1439                                 if ($idx == $h) $OUT .= " selected default";
1440                                 $OUT .= ">".$idx."</OPTION>\n";
1441                         }
1442                         $OUT .= "  </SELECT></TD>\n";
1443                 }
1444                  else
1445                 {
1446                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_ho\" value=\"0\">\n";
1447                 }
1448                 if (ereg("m", $display) || (empty($display)))
1449                 {
1450                         // Generate minute selection
1451                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_mi\" size=\"1\">\n";
1452                         for ($idx = 0; $idx <= 59; $idx++)
1453                         {
1454                                 $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1455                                 if ($idx == $m) $OUT .= " selected default";
1456                                 $OUT .= ">".$idx."</OPTION>\n";
1457                         }
1458                         $OUT .= "  </SELECT></TD>\n";
1459                 }
1460                  else
1461                 {
1462                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_mi\" value=\"0\">\n";
1463                 }
1464                 if (ereg("s", $display) || (empty($display)))
1465                 {
1466                         // Generate second selection
1467                         $OUT .= "  <TD align=\"center\"><SELECT class=\"mini_select\" name=\"".$prefix."_se\" size=\"1\">\n";
1468                         for ($idx = 0; $idx <= 45; $idx+=15)
1469                         {
1470                                 $OUT .= "  <OPTION class=\"mini_select\" value=\"".$idx."\"";
1471                                 if ($idx == $s) $OUT .= " selected default";
1472                                 $OUT .= ">".$idx."</OPTION>\n";
1473                         }
1474                         $OUT .= "  </SELECT></TD>\n";
1475                 }
1476                  else
1477                 {
1478                         $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_se\" value=\"0\">\n";
1479                 }
1480                 $OUT .= "</TR>\n";
1481                 $OUT .= "</TABLE>\n";
1482                 $OUT .= "</DIV>\n";
1483                 // Return generated HTML code
1484         }
1485         return $OUT;
1486 }
1487 //
1488 function CREATE_TIMESTAMP_FROM_SELECTIONS($prefix, $POST) {
1489         $ret = "0";
1490         // Do we have a leap year?
1491         $SWITCH = 0;
1492         $TEST = date('Y', time()) / 4;
1493         $M1   = date("m", time());
1494         // If so and if current time is before 02/29 and estimated time is after 02/29 then add 86400 seconds (one day)
1495         if ((floor($TEST) == $TEST) && ($M1 == "02") && ($POST[$prefix."_mo"] > "02"))  $SWITCH = ONE_DAY;
1496         // First add years...
1497         $ret += $POST[$prefix."_ye"] * (31536000 + $SWITCH);
1498         // Next months...
1499         $ret += $POST[$prefix."_mo"] * 2628000;
1500         // Next weeks
1501         $ret += $POST[$prefix."_we"] * 604800;
1502         // Next days...
1503         $ret += $POST[$prefix."_da"] * 86400;
1504         // Next hours...
1505         $ret += $POST[$prefix."_ho"] * 3600;
1506         // Next minutes..
1507         $ret += $POST[$prefix."_mi"] * 60;
1508         // And at last seconds...
1509         $ret += $POST[$prefix."_se"];
1510         // Return calculated value
1511         return $ret;
1512 }
1513 // Sends out mail to all administrators
1514 function SEND_ADMIN_EMAILS_PRO($subj, $template, $content="", $UID="0") {
1515         // Trim template name
1516         $template = trim($template);
1517
1518         // Load email template
1519         $msg = LOAD_EMAIL_TEMPLATE($template, $content, $UID);
1520
1521         if (GET_EXT_VERSION("admins") < "0.4.0") {
1522                 // Older version detected!
1523                 return SEND_ADMIN_EMAILS($subj, $msg);
1524         }
1525
1526         // Check which admin shall receive this mail
1527         $result = SQL_QUERY_ESC("SELECT DISTINCT admin_id FROM "._MYSQL_PREFIX."_admins_mails WHERE mail_template='%s' ORDER BY admin_id",
1528          array($template), __FILE__, __LINE__);
1529         if (SQL_NUMROWS($result) == 0) {
1530                 // Create new entry (to all admins)
1531                 $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_admins_mails (admin_id, mail_template) VALUES (0, '%s')",
1532                  array($template), __FILE__, __LINE__);
1533         } else {
1534                 // Load admin IDs...
1535                 $aids = array();
1536                 while(list($aid) = SQL_FETCHROW($result)) {
1537                         $aids[] = $aid;
1538                 }
1539
1540                 // Free memory
1541                 SQL_FREERESULT($result);
1542
1543                 // "implode" IDs and query string
1544                 $aid = implode(",", $aids);
1545                 if ($aid == "-1") {
1546                         // Add line to userlog
1547                         USERLOG_ADD_LINE($subj, $msg, $UID);
1548                         return;
1549                 } elseif ($aid == "0") {
1550                         // Select all email adresses
1551                         $result = SQL_QUERY("SELECT email FROM "._MYSQL_PREFIX."_admins ORDER BY id", __FILE__, __LINE__);
1552                 } else {
1553                         // If Admin-ID is not "to-all" select
1554                         $result = SQL_QUERY_ESC("SELECT email FROM "._MYSQL_PREFIX."_admins WHERE id IN (%s) ORDER BY id", array($aid), __FILE__, __LINE__);
1555                 }
1556         }
1557
1558         // Load email addresses and send away
1559         while (list($email) = SQL_FETCHROW($result)) {
1560                 SEND_EMAIL($email, $subj, $msg);
1561         }
1562
1563         // Free memory
1564         SQL_FREERESULT($result);
1565 }
1566 //
1567 function CREATE_FANCY_TIME($stamp) {
1568         // Get data array with years/months/weeks/days/...
1569         $data = CREATE_TIME_SELECTIONS($stamp, "", "", "", true);
1570         $ret = "";
1571         foreach($data as $k=>$v) {
1572                 if ($v > 0) {
1573                         // Value is greater than 0 "eval" data to return string
1574                         $eval = "\$ret .= \", \".\$v.\" \"._".strtoupper($k).";";
1575                         eval($eval);
1576                         break;
1577                 }
1578         }
1579
1580         // Remove first "comma,null" string
1581         $ret = substr($ret, 2);
1582         return $ret;
1583 }
1584 //
1585 function ADD_EMAIL_NAV($PAGES, $offset, $show_form, $colspan, $return=false) {
1586         $SEP = ""; $TOP = "";
1587         if (!$show_form) {
1588                 $TOP = " top2";
1589                 $SEP = "<TR><TD colspan=\"".$colspan."\" class=\"seperator\">&nbsp;</TD></TR>";
1590         }
1591
1592         $NAV = "";
1593         for ($page = 1; $page <= $PAGES; $page++) {
1594                 // Is the page currently selected or shall we generate a link to it?
1595                 if (($page == $_GET['page']) || ((empty($_GET['page'])) && ($page == "1"))) {
1596                         // Is currently selected, so only highlight it
1597                         $NAV .= "<STRONG>-";
1598                 } else {
1599                         // Open anchor tag and add base URL
1600                         $NAV .= "<A href=\"".URL."/modules.php?module=admin&amp;what=".$GLOBALS['what']."&amp;page=".$page."&amp;offset=".$offset;
1601
1602                         // Add userid when we shall show all mails from a single member
1603                         if ((isset($_GET['u_id'])) && (bigintval($_GET['u_id']) > 0)) $NAV .= "&amp;u_id=".bigintval($_GET['u_id']);
1604
1605                         // Close open anchor tag
1606                         $NAV .= "\">";
1607                 }
1608                 $NAV .= $page;
1609                 if (($page == $_GET['page']) || ((empty($_GET['page'])) && ($page == "1"))) {
1610                         // Is currently selected, so only highlight it
1611                         $NAV .= "-</STRONG>";
1612                 } else {
1613                         // Close anchor tag
1614                         $NAV .= "</A>";
1615                 }
1616
1617                 // Add seperator if we have not yet reached total pages
1618                 if ($page < $PAGES) $NAV .= "&nbsp;|&nbsp;";
1619         }
1620
1621         // Define constants only once
1622         if (!defined('__NAV_OUTPUT')) {
1623                 define('__NAV_OUTPUT' , $NAV);
1624                 define('__NAV_COLSPAN', $colspan);
1625                 define('__NAV_TOP'    , $TOP);
1626                 define('__NAV_SEP'    , $SEP);
1627         }
1628
1629         // Load navigation template
1630         $OUT = LOAD_TEMPLATE("admin_email_nav_row", true);
1631
1632         if ($return) {
1633                 // Return generated HTML-Code
1634                 return $OUT;
1635         } else {
1636                 // Output HTML-Code
1637                 OUTPUT_HTML($OUT);
1638         }
1639 }
1640
1641 //
1642 function MXCHANGE_OPEN ($script) {
1643         // Compile the script name
1644         $script = COMPILE_CODE($script);
1645
1646         // Use default SERVER_URL by default... ;) So?
1647         $url = SERVER_URL;
1648         if (substr($script, 0, 7) == "http://") {
1649                 // Use the hostname from script URL as new hostname
1650                 $url = substr($script, 7);
1651                 $extract = explode("/", $url);
1652                 $url = $extract[0];
1653                 // Done extracting the URL :)
1654         }
1655
1656         // Extract host name
1657         $host = str_replace("http://", "", $url);
1658         if (ereg("/", $host)) $host = substr($host, 0, strpos($host, "/"));
1659
1660         // Generate relative URL
1661         $script = substr($script, (strlen($url) + 7));
1662         if (substr($script, 0, 1) == "/") $script = substr($script, 1);
1663
1664         // Open connection
1665         $fp = @fsockopen($host, 80, $errno, $errdesc, 30);
1666         if (!$fp) {
1667                 // Failed!
1668                 return array("", "", "");
1669         }
1670
1671         // Generate request header
1672         $request  = "GET /".trim($script)." HTTP/1.0\r\n";
1673         $request .= "Host: ".$host."\r\n";
1674         $request .= "Referer: ".URL."/admin.php\r\n";
1675         $request .= "User-Agent: ".TITLE."/".FULL_VERSION."\r\n\r\n";
1676
1677         // Initialize array
1678         $response = array();
1679
1680         // Write request
1681         fputs($fp, $request);
1682
1683         // Read response
1684         while(!feof($fp)) {
1685                 $response[] = trim(fgets($fp, 1024));
1686         }
1687
1688         // Close socket
1689         fclose($fp);
1690
1691         // Was the request successfull?
1692         if ((!ereg("200 OK", $response[0])) && (empty($response[0]))) {
1693                 // Not found / access forbidden
1694                 $response = array("", "", "");
1695         }
1696
1697         // Return response
1698         return $response;
1699 }
1700 // Taken from www.php.net eregi() user comments
1701 function VALIDATE_EMAIL($email) {
1702         // Compile email
1703         $email = COMPILE_CODE($email);
1704
1705         // Check first part of email address
1706         $first = "[-a-z0-9!#$%&\'*+/=?^_<{|}~]+(\.[-a-zA-Z0-9!#$%&\'*+/=?^_<{|}~]+)*";
1707
1708         //  Check domain
1709         $domain = "[a-z0-9-]+(\.[a-z0-9-]{2,5})+";
1710
1711         // Generate pattern
1712         $regex = "^".$first."@".$domain."$";
1713
1714         // Return check result
1715         return eregi($regex, $email);
1716 }
1717 // Function taken from user comments on www.php.net / function eregi()
1718 function VALIDATE_URL ($URL, $compile=true) {
1719         // Trim URL a little
1720         $URL = trim(urldecode($URL));
1721         //* DEBUG: */ echo $URL."<br />";
1722
1723         // Compile some chars out...
1724         if ($compile) $URL = COMPILE_CODE($URL, false, false, false);
1725         //* DEBUG: */ echo $URL."<br />";
1726
1727         // Check for the extension filter
1728         if (EXT_IS_ACTIVE("filter")) {
1729                 // Use the extension's filter set
1730                 return FILTER_VALIDATE_URL($URL, false);
1731         }
1732
1733         // If not installed, perform a simple test. Just make it sure there is always a http:// or
1734         // https:// in front of the URLs
1735         return (((substr($URL, 0, 7) == "http://") || (substr($URL, 0, 8) == "https://")) && (strlen($URL) >= 12));
1736 }
1737 //
1738 function MEMBER_ACTION_LINKS($uid, $status="") {
1739         // Define all main targets
1740         $TARGETS = array("del_user", "edit_user", "lock_user", "add_points", "sub_points");
1741
1742         // Begin of navigation links
1743         $eval = "\$OUT = \"[&nbsp;";
1744
1745         foreach ($TARGETS as $tar) {
1746                 $eval .= "<SPAN class=\\\"admin_user_link\\\"><A href=\\\"".URL."/modules.php?module=admin&amp;what=".$tar."&amp;u_id=".$uid."\\\" title=\\\"\".ADMIN_LINK_";
1747                 //* DEBUG: */ echo "*".$tar."/".$status."*<br />\n";
1748                 if (($tar == "lock_user") && ($status == "LOCKED")) {
1749                         // Locked accounts shall be unlocked
1750                         $eval .= "UNLOCK_USER";
1751                 } else {
1752                         // All other status is fine
1753                         $eval .= strtoupper($tar);
1754                 }
1755                 $eval .= "_TITLE.\"\\\">\".ADMIN_";
1756                 if (($tar == "lock_user") && ($status == "LOCKED")) {
1757                         // Locked accounts shall be unlocked
1758                         $eval .= "UNLOCK_USER";
1759                 } else {
1760                         // All other status is fine
1761                         $eval .= strtoupper($tar);
1762                 }
1763                 $eval .= ".\"</A></SPAN>&nbsp;|&nbsp;";
1764         }
1765
1766         // Finish navigation link
1767         $eval = substr($eval, 0, -7) . "]\";";
1768         eval($eval);
1769
1770         // Return string
1771         return $OUT;
1772 }
1773 // Function for backward-compatiblity
1774 function ADD_CATEGORY_TABLE ($MODE, $return=false) {
1775         // Load it from the register extension
1776         return REGISTER_ADD_CATEGORY_TABLE ($MODE, $return);
1777 }
1778 // Generate an email link
1779 function CREATE_EMAIL_LINK($email, $table="admins") {
1780         // Default email link (INSECURE! Spammer can read this by harvester programs)
1781         $EMAIL = "mailto:".$email;
1782
1783         // Check for several extensions
1784         if ((EXT_IS_ACTIVE("admins")) && ($table == "admins")) {
1785                 // Create email link for contacting admin in guest area
1786                 $EMAIL = ADMINS_CREATE_EMAIL_LINK($email);
1787         } elseif ((GET_EXT_VERSION("user") >= "0.3.3") && ($table == "user_data")) {
1788                 // Create email link for contacting a member within admin area (or later in other areas, too?)
1789                 $EMAIL = USER_CREATE_EMAIL_LINK($email);
1790         } elseif ((EXT_IS_ACTIVE("sponsor")) && ($table == "sponsor_data")) {
1791                 // Create email link to contact sponsor within admin area (or like the link above?)
1792                 $EMAIL = SPONSOR_CREATE_EMAIL_LINK($email);
1793         }
1794
1795         // Shall I close the link when there is no admin?
1796         if ((!IS_ADMIN()) && ($EMAIL == $email)) $EMAIL = "#"; // Closed!
1797
1798         // Return email link
1799         return $EMAIL;
1800 }
1801 // Generate a hash for extra-security for all passwords
1802 function generateHash($plainText, $salt = "") {
1803         global $_CONFIG, $_SERVER;
1804
1805         // Is the required extension "sql_patches" there?
1806         if ((GET_EXT_VERSION("sql_patches") < "0.3.6") || (GET_EXT_VERSION("sql_patches") == "")) {
1807                 // Extension sql_patches is missing/outdated so we return the plain text
1808                 return $plainText;
1809         }
1810
1811         // When the salt is empty build a new one, else use the first x configured characters as the salt
1812         if ($salt == "") {
1813                 // Build server string
1814                 $server = $_SERVER['PHP_SELF'].":".getenv('HTTP_USER_AGENT').":".getenv('SERVER_SOFTWARE').":".getenv('REMOTE_ADDR').":".":".filemtime(PATH."inc/databases.php");
1815
1816                 // Build key string
1817                 $keys   = SITE_KEY.":".DATE_KEY.":".$_CONFIG['secret_key'].":".$_CONFIG['file_hash'].":".date("d-m-Y (l-F-T)", $_CONFIG['patch_ctime']).":".$_CONFIG['master_salt'];
1818
1819                 // Additional data
1820                 $data = $plainText.":".uniqid(rand(), true).":".time();
1821
1822                 // Calculate number for generating the code
1823                 $a = time() + _ADD - 1;
1824
1825                 // Generate SHA1 sum from modula of number and the prime number
1826                 $sha1 = sha1(($a % _PRIME).$server.":".$keys.":".$data.":".date("d-m-Y (l-F-T)", time()).":".$a);
1827                 //* DEBUG: */ echo "SHA1=".$sha1." (".strlen($sha1).")<br>";
1828                 $sha1 = scrambleString($sha1);
1829                 //* DEBUG: */ echo "Scrambled=".$sha1." (".strlen($sha1).")<br>";
1830                 //* DEBUG: */ $sha1b = descrambleString($sha1);
1831                 //* DEBUG: */ echo "Descrambled=".$sha1b." (".strlen($sha1b).")<br>";
1832
1833                 // Generate the password salt string
1834                 $salt = substr($sha1, 0, $_CONFIG['salt_length']);
1835                 //* DEBUG: */ echo $salt." (".strlen($salt).")<br />";
1836         }
1837          else
1838         {
1839                 $salt = substr($salt, 0, $_CONFIG['salt_length']);
1840         }
1841
1842         // Return hash
1843         return $salt . sha1($salt . $plainText);
1844 }
1845 //
1846 function scrambleString($str) {
1847         global $_CONFIG;
1848
1849         // Init
1850         $scrambled = "";
1851
1852         // Final check, in case of failture it will return unscrambled string
1853         if (strlen($str) > 40) {
1854                 // The string is to long
1855                 return $str;
1856         } elseif (strlen($str) == 40) {
1857                 // From database
1858                 $scrambleNums = explode(":", $_CONFIG['pass_scramble']);
1859         } else {
1860                 // Generate new numbers
1861                 $scrambleNums = explode(":", genScrambleString(strlen($str)));
1862         }
1863
1864         // Scramble string here
1865         //* DEBUG: */ echo "***Original=".$str."***<br />";
1866         for ($idx = 0; $idx < strlen($str); $idx++) {
1867                 // Get char on scrambled position
1868                 $char = substr($str, $scrambleNums[$idx], 1);
1869
1870                 // Add it to final output string
1871                 $scrambled .= $char;
1872         }
1873
1874         // Return scrambled string
1875         //* DEBUG: */ echo "***Scrambled=".$scrambled."***<br />";
1876         return $scrambled;
1877 }
1878 //
1879 function descrambleString($str)
1880 {
1881         global $_CONFIG;
1882         // Scramble only 40 chars long strings
1883         if (strlen($str) != 40) return $str;
1884
1885         // Load numbers from config
1886         $scrambleNums = explode(":", $_CONFIG['pass_scramble']);
1887
1888         // Validate numbers
1889         if (count($scrambleNums) != 40) return $str;
1890
1891         // Begin descrambling
1892         $orig = str_repeat(" ", 40);
1893         //* DEBUG: */ echo "+++Scrambled=".$str."+++<br />";
1894         for ($idx = 0; $idx < 40; $idx++)
1895         {
1896                 $char = substr($str, $idx, 1);
1897                 $orig = substr_replace($orig, $char, $scrambleNums[$idx], 1);
1898         }
1899
1900         // Return scrambled string
1901         //* DEBUG: */ echo "+++Original=".$orig."+++<br />";
1902         return $orig;
1903 }
1904 //
1905 function genScrambleString($len) {
1906         // Prepare randomizer and array for the numbers
1907         mt_srand((double) microtime() * 1000000);
1908         $scrambleNumbers = array();
1909
1910         // First we need to setup randomized numbers from 0 to 31
1911         for ($idx = 0; $idx < $len; $idx++) {
1912                 // Generate number
1913                 $rand = mt_rand(0, ($len -1));
1914
1915                 // Check for it by creating more numbers
1916                 while (array_key_exists($rand, $scrambleNumbers)) {
1917                         $rand = mt_rand(0, ($len -1));
1918                 }
1919
1920                 // Add number
1921                 $scrambleNumbers[$rand] = $rand;
1922         }
1923
1924         // So let's create the string for storing it in database
1925         $scrambleString = implode(":", $scrambleNumbers);
1926         return $scrambleString;
1927 }
1928 // Append data like session ID referral ID to the given URL which would
1929 // normally be stored in cookies
1930 function ADD_URL_DATA($URL)
1931 {
1932         global $_CONFIG;
1933         $ADD = "";
1934
1935         // Determine URL binder
1936         $BIND = "?";
1937         if (strpos($URL, "?") !== false) $BIND = "&";
1938
1939         if ((!defined('__COOKIES')) || ((!__COOKIES))) {
1940                 // Cookies are not accepted
1941                 if ((!empty($_GET['refid'])) && (strpos($URL, "refid=") == 0)) {
1942                         // Cookie found in URL
1943                         $ADD .= $BIND."refid=".bigintval($_GET['refid']);
1944                 } elseif ((GET_EXT_VERSION("sql_patches") != '') && ($_CONFIG['def_refid'] > 0)) {
1945                         // Not found! So let's set default here
1946                         $ADD .= $BIND."refid=".$_CONFIG['def_refid'];
1947                 }
1948
1949                 // Is there already added data? Then change the binder
1950                 if (!empty($ADD)) $BIND = "&";
1951
1952                 // Add session ID
1953                 if ((!empty($_GET['PHPSESSID'])) && (strpos($URL, "PHPSESSID=") == 0)) {
1954                         // Add session from URL
1955                         $ADD .= $BIND."PHPSESSID=".SQL_ESCAPE(strip_tags($_GET['PHPSESSID']));
1956                 } else {
1957                         // Add current session
1958                         $ADD .= $BIND."PHPSESSID=".session_id();
1959                 }
1960         }
1961
1962         // Add all together and return it
1963         return $URL.$ADD;
1964 }
1965 //
1966 function generatePassString($passHash) {
1967         global $_CONFIG;
1968
1969         // Return vanilla password hash
1970         $ret = $passHash;
1971
1972         // Is a secret key and master salt already initialized?
1973         if ((!empty($_CONFIG['secret_key'])) && (!empty($_CONFIG['master_salt']))) {
1974                 // Only calculate when the secret key is generated
1975                 $newHash = ""; $start = 9;
1976                 for ($idx = 0; $idx < 10; $idx++) {
1977                         $part1 = hexdec(substr($passHash, $start, 4));
1978                         $part2 = hexdec(substr($_CONFIG['secret_key'], $start, 4));
1979                         $mod = dechex($idx);
1980                         if ($part1 > $part2) {
1981                                 $mod = dechex(sqrt(($part1 - $part2) * _PRIME / pi()));
1982                         } elseif ($part2 > $part1) {
1983                                 $mod = dechex(sqrt(($part2 - $part1) * _PRIME / pi()));
1984                         }
1985                         $mod = substr(round($mod), 0, 4);
1986                         $mod = str_repeat('0', 4-strlen($mod)).$mod;
1987                         //* DEBUG: */ echo "*".$start."=".$mod."*<br>";
1988                         $start += 4;
1989                         $newHash .= $mod;
1990                 }
1991
1992                 //* DEBUG: */ die($passHash."<br>".$newHash." (".strlen($newHash).")");
1993                 $ret = generateHash($newHash, $_CONFIG['master_salt']);
1994         }
1995
1996         // Return result
1997         return $ret;
1998 }
1999 // Fix "deleted" cookies
2000 function FIX_DELETED_COOKIES ($cookies) {
2001         // Is this an array with entries?
2002         if ((is_array($cookies)) && (count($cookies) > 0)) {
2003                 // Then check all cookies if they are marked as deleted!
2004                 foreach ($cookies as $cookieName) {
2005                         // Is the cookie set to "deleted"?
2006                         if (get_session($cookieName) == "deleted") {
2007                                 set_session($cookieName, "");
2008                         }
2009                 }
2010         }
2011 }
2012 // Output error messages in a fasioned way and die...
2013 function mxchange_die ($msg) {
2014         global $footer;
2015
2016         // Load the message template
2017         LOAD_TEMPLATE("admin_settings_saved", false, $msg);
2018
2019         // Load footer
2020         include(PATH."inc/footer.php");
2021
2022         // Exit explicitly
2023         exit;
2024 }
2025
2026 // Display parsing time and number of SQL queries in footer
2027 function DISPLAY_PARSING_TIME_FOOTER() {
2028         global $startTime, $_CONFIG;
2029         $endTime = microtime(true);
2030
2031         // Is the timer started?
2032         if (!isset($GLOBALS['startTime'])) {
2033                 // Abort here
2034                 return false;
2035         }
2036
2037         // "Explode" both times
2038         $start = explode(" ", $GLOBALS['startTime']);
2039         $end = explode(" ", $endTime);
2040         $runTime = $end[0] - $start[0];
2041         if ($runTime < 0) $runTime = 0;
2042         $runTime = TRANSLATE_COMMA($runTime);
2043
2044         // Prepare output
2045         $content = array(
2046                 'runtime'               => $runTime,
2047                 'numSQLs'               => ($_CONFIG['sql_count'] + 1),
2048                 'numTemplates'  => ($_CONFIG['num_templates'] + 1)
2049         );
2050
2051         // Load the template
2052         LOAD_TEMPLATE("show_timings", false, $content);
2053 }
2054
2055 // Unset/set session variables
2056 function set_session ($var, $value) {
2057         global $CSS;
2058         // Abort in CSS mode here
2059         if ($CSS == 1) return true;
2060
2061         // Trim value and session variable
2062         $var = trim(SQL_ESCAPE($var)); $value = trim($value);
2063
2064         // Is the session variable set?
2065         if (("".$value."" == "") && (isSessionVariableSet($var))) {
2066                 // Remove the session
2067                 //* DEBUG: */ echo "UNSET:".$var."=".get_session($var)."<br />\n";
2068                 unset($_SESSION[$var]);
2069                 return session_unregister($var);
2070         } elseif (("".$value."" != '') && (!isSessionVariableSet($var))) {
2071                 // Set session
2072                 //* DEBUG: */ echo "SET:".$var."=".$value."<br />\n";
2073                 $_SESSION[$var] =  $value;
2074                 return session_register($var);
2075         }
2076
2077         // Return always true if the session variable is already set.
2078         // Keept me busy for a longer while...
2079         //* DEBUG: */ echo "IGNORED:".$var."=".$value."<br />\n";
2080         return true;
2081 }
2082 // Check wether a boolean constant is set
2083 // Taken from user comments in PHP documentation for function constant()
2084 function isBooleanConstantAndTrue($constname) { // : Boolean
2085         $res = false;
2086         if (defined($constname)) $res = (constant($constname) === true);
2087         return($res);
2088 }
2089
2090 // Check wether a session variable is set
2091 function isSessionVariableSet($var) {
2092         return (isset($_SESSION[$var]));
2093 }
2094
2095 // Returns wether the value of the session variable or NULL if not set
2096 function get_session($var) {
2097         if (!isset($_SESSION)) session_start();
2098
2099         // Default is not found! ;-)
2100         $value = null;
2101
2102         // Is the variable there?
2103         if (isSessionVariableSet($var)) {
2104                 // Then  get it secured!
2105                 $value = SQL_ESCAPE($_SESSION[$var]);
2106         }
2107
2108         // Return the value
2109         return $value;
2110 }
2111
2112 //
2113 //////////////////////////////////////////////
2114 //                                          //
2115 // AUTOMATICALLY RE-GNERATED FUNCTIONS ONLY //
2116 //                                          //
2117 //////////////////////////////////////////////
2118 //
2119 if (!function_exists('html_entity_decode'))
2120 {
2121         // Taken from documentation on www.php.net
2122         function html_entity_decode($string)
2123         {
2124                 $trans_tbl = get_html_translation_table(HTML_ENTITIES);
2125                 $trans_tbl = array_flip($trans_tbl);
2126                 return strtr($string, $trans_tbl);
2127         }
2128 }
2129 //
2130 ?>