fix on misc settings
[mailer.git] / inc / functions.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 08/25/2003 *
4  * ===============                              Last change: 11/29/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : functions.php                                    *
8  * -------------------------------------------------------------------- *
9  * Short description : Many non-MySQL functions (also file access)      *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Viele Nicht-MySQL-Funktionen (auch Dateizugriff) *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 // Check if our config file is writeable or not
41 function is_INCWritable($inc) {
42         $fp = @fopen(PATH."inc/".$inc.".php", 'a');
43         if ($inc == "dummy") {
44                 // Remove dummy file
45                 @fclose($fp);
46                 return @unlink(PATH."inc/dummy.php");
47         } else {
48                 // Close all other files
49                 return @fclose($fp);
50         }
51 }
52
53 // Open a table (you may want to add some header stuff here)
54 function OPEN_TABLE($PERCENT = "", $CLASS = "", $ALIGN="left", $VALIGN="", $td_only=false) {
55         global $table_cnt;
56         // Count tables so we can generate CSS classes for every table... :-)
57         if (empty($CLASS)) {
58                 // Class is empty so count one up and create a class
59                 $table_cnt++; $CLASS = "class".$table_cnt;
60         }
61         $OUT = "<TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"0\"";
62
63         // Shall I add the classes to TABLE and TD or only to TD?
64         if (!$td_only) $OUT .= " class=\"".$CLASS."\"";
65
66         // Width is given
67         if (!empty($PERCENT)) $OUT .= " width=\"".$PERCENT."\"";
68
69         // Horizonal align
70         if (!empty($ALIGN)) $OUT .=" align=\"".$ALIGN."\"";
71
72         // Vertical align is given
73         if (!empty($VALIGN))  $OUT .= " valign=\"".$VALIGN."\"";
74         $OUT .= ">
75 <TR>
76   <TD";
77         if (!empty($ALIGN)) $OUT .=" align=\"".$ALIGN."\"";
78         $OUT .= " class=\"".$CLASS."\">";
79         OUTPUT_HTML($OUT);
80 }
81
82 // Close a table (you may want to add some footer stuff here)
83 function CLOSE_TABLE($ADD="") {
84         OUTPUT_HTML("  </TD>
85 </TR>");
86         if (!empty($ADD)) OUTPUT_HTML($ADD);
87         OUTPUT_HTML("</TABLE>");
88 }
89
90 // Output HTML code directly or "render" it. You addionally switch the new-line character off
91 function OUTPUT_HTML($HTML, $NEW_LINE = true) {
92         // Some global variables
93         global $OUTPUT, $footer, $CSS;
94
95         // Do we have HTML-Code here?
96         if (!empty($HTML)) {
97                 // Yes, so we handle it as you have configured
98                 switch (OUTPUT_MODE)
99                 {
100                 case "render":
101                         // That's why you don't need any \n at the end of your HTML code... :-)
102                         if (_OB_CACHING == "on") {
103                                 // Output into PHP's internal buffer
104                                 OUTPUT_RAW($HTML);
105
106                                 // That's why you don't need any \n at the end of your HTML code... :-)
107                                 if ($NEW_LINE) echo "\n";
108                         } else {
109                                 // Render mode for old or lame servers...
110                                 $OUTPUT .= $HTML;
111
112                                 // That's why you don't need any \n at the end of your HTML code... :-)
113                                 if ($NEW_LINE) $OUTPUT .= "\n";
114                         }
115                         break;
116
117                 case "direct":
118                         // If we are switching from render to direct output rendered code
119                         if ((!empty($OUTPUT)) && (_OB_CACHING != "on")) { OUTPUT_RAW($OUTPUT); $OUTPUT = ""; }
120
121                         // The same as above... ^
122                         OUTPUT_RAW($HTML);
123                         if ($NEW_LINE) echo "\n";
124                         break;
125
126                 default:
127                         // Huh, something goes wrong or maybe you have edited config.php ???
128                         die ("<STRONG>".FATAL_ERROR.":</STRONG> ".LANG_NO_RENDER_DIRECT);
129                         break;
130                 }
131         } elseif ((_OB_CACHING == "on") && ($footer == 1)) {
132                 // Output cached HTML code
133                 $OUTPUT = ob_get_contents();
134
135                 // Clear output buffer for later output
136                 ob_end_clean();
137
138                 if ((EXT_IS_ACTIVE("rewrite", true)) && (function_exists('REWRITE_LINKS')) && ($CSS != "1") && ($CSS != "-1")) {
139                         $OUTPUT = REWRITE_LINKS($OUTPUT);
140                 }
141
142                 // Compile and run finished rendered HTML code
143                 while (strpos($OUTPUT, "{!") > 0) {
144                         $eval = "\$OUTPUT = \"" . COMPILE_CODE(addslashes($OUTPUT)) . "\";";
145                         @eval($eval);
146                 }
147
148                 // Output code here, DO NOT REMOVE! ;-)
149                 OUTPUT_RAW($OUTPUT);
150         } elseif ((OUTPUT_MODE == "render") && (!empty($OUTPUT))) {
151                 // Rewrite links when rewrite extension is active
152                 if ((EXT_IS_ACTIVE("rewrite", true)) && (function_exists('REWRITE_LINKS')) && ($CSS != "1") && ($CSS != "-1")) {
153                         $OUTPUT = REWRITE_LINKS($OUTPUT);
154                 }
155
156                 // Compile and run finished rendered HTML code
157                 while (strpos($OUTPUT, "{!") > 0) {
158                         $eval = "\$OUTPUT = \"" . COMPILE_CODE(addslashes($OUTPUT)) . "\";";
159                         @eval($eval);
160                 }
161
162                 // Output code here, DO NOT REMOVE! ;-)
163                 OUTPUT_RAW($OUTPUT);
164         }
165 }
166
167 // Output the raw HTML code
168 function OUTPUT_RAW ($HTML) {
169         if ((isBooleanConstantAndTrue('mxchange_installed')) && (basename($_SERVER['PHP_SELF']) != "install.php")) {
170                 // Not in install-mode so strip slashes away
171                 echo stripslashes($HTML);
172         } else {
173                 // Output directly in install-mode
174                 echo $HTML;
175         }
176
177         // Flush the output
178         flush();
179 }
180
181 // Add a fatal error message to the queue array
182 function ADD_FATAL ($message, $extra="")
183 {
184         global $FATAL;
185         if (empty($extra)) {
186                 // Regular text message to add to $FATAL
187                 $FATAL[] = $message;
188         } else {
189                 // $message is text with a mask plus extras to insert into the text
190                 $FATAL[] = sprintf($message, $extra);
191         }
192 }
193
194 // Load a template file and return it's content (only it's name; do not use ' or ")
195 function LOAD_TEMPLATE($template, $return=false, $content="") {
196         // Add more variables which you want to use in your template files
197         global $DATA, $_CONFIG, $username;
198
199         // Count the template load
200         if (!isset($_CONFIG['num_templates'])) $_CONFIG['num_templates'] = 0;
201         $_CONFIG['num_templates']++;
202
203         // Init some data
204         $ACTION = SQL_ESCAPE($GLOBALS['action']);
205         $WHAT = SQL_ESCAPE($GLOBALS['what']);
206         $ret = "";
207         if (empty($GLOBALS['refid'])) $GLOBALS['refid'] = 0;
208         $REFID = $GLOBALS['refid'];
209
210         if ($template == "member_support_form") {
211                 // Support request of a member
212                 $result = SQL_QUERY_ESC("SELECT sex, surname, family FROM "._MYSQL_PREFIX."_user_data WHERE userid=%d LIMIT 1",
213                  array($GLOBALS['userid']), __FILE__, __LINE__);
214                 list($sex, $surname, $family) = SQL_FETCHROW($result);
215                 SQL_FREERESULT($result);
216                 $salut = TRANSLATE_SEX($sex);
217         }
218
219         // Generate date/time string
220         $date_time = MAKE_DATETIME(time(), "1");
221
222         // Base directory
223         $BASE = PATH."templates/".GET_LANGUAGE()."/html/";
224         $MODE = "";
225
226         // Check for admin/guest/member templates
227         if (strpos($template, "admin_") > -1) {
228                 // Admin template found
229                 $MODE = "admin/";
230         } elseif (strpos($template, "guest_") > -1) {
231                 // Guest template found
232                 $MODE = "guest/";
233         } elseif (strpos($template, "member_") > -1) {
234                 // Member template found
235                 $MODE = "member/";
236         } elseif (strpos($template, "install_") > -1) {
237                 // Installation template found
238                 $MODE = "install/";
239         } elseif (strpos($template, "ext_") > -1) {
240                 // Extension template found
241                 $MODE = "ext/";
242         } elseif (strpos($template, "la_") > -1) {
243                 // "Logical-area" template found
244                 $MODE = "la/";
245         } else {
246                 // Test for extension
247                 $test = substr($template, 0, strpos($template, "_"));
248                 if (EXT_IS_ACTIVE($test)) {
249                         // Set extra path to extension's name
250                         $MODE = $test."/";
251                 }
252         }
253
254         ////////////////////////
255         // Generate file name //
256         ////////////////////////
257         $file = $BASE.$MODE.$template.".tpl";
258
259         if ((!empty($GLOBALS['what'])) && ((strpos($template, "_header") > 0) || (strpos($template, "_footer") > 0)) && (($MODE == "guest/") || ($MODE == "member/") || ($MODE == "admin/"))) {
260                 // Select what depended header/footer template file for admin/guest/member area
261                 $file2 = sprintf("%s%s%s_%s.tpl",
262                         $BASE,
263                         $MODE,
264                         $template,
265                         SQL_ESCAPE($GLOBALS['what'])
266                 );
267
268                 // Probe for it...
269                 if (file_exists($file2)) $file = $file2;
270
271                 // Remove variable from memory
272                 unset($file2);
273         }
274
275         // Does the special template exists?
276         if ((!file_exists($file)) || (!is_readable($file))) {
277                 // Reset to default template
278                 $file = $BASE.$template.".tpl";
279         }
280
281         // Now does the final template exists?
282         if ((file_exists($file)) && (is_readable($file))) {
283                 // The local file does exists so we load it. :)
284                 $tmpl_file = implode("", file($file));
285
286                 // Replace ' to our own chars to preventing them being quoted
287                 while (strpos($tmpl_file, "\'") !== false) { $tmpl_file = str_replace("\'", "{QUOT}", $tmpl_file); }
288
289                 // Do we have to compile the code?
290                 if ((strpos($tmpl_file, "\$") !== false) || (strpos($tmpl_file, '{--') !== false) || (strpos($tmpl_file, '--}') > 0)) {
291                         // Okay, compile it!
292                         $tmpl_file = "\$ret=\"".COMPILE_CODE(addslashes($tmpl_file))."\";";
293                         eval($tmpl_file);
294                 } else {
295                         // Simply return loaded code
296                         $ret = $tmpl_file;
297                 }
298
299                 // Add surrounding HTML comments to help finding bugs faster
300                 $ret = "<!-- Template ".$template." - Start -->\n".$ret."<!-- Template ".$template." - End -->\n";
301         } elseif ((IS_ADMIN()) || ((isBooleanConstantAndTrue('mxchange_installing')) && (!isBooleanConstantAndTrue('mxchange_installed')))) {
302                 // Only admins shall see this warning or when installation mode is active
303                 $ret = "<br /><SPAN class=\"guest_failed\">".TEMPLATE_404."</SPAN><br />
304 (".basename($file).")<br />
305 <br />
306 ".TEMPLATE_CONTENT."
307 <PRE>".print_r($content, true)."</PRE>
308 ".TEMPLATE_DATA."
309 <PRE>".print_r($DATA, true)."</PRE>
310 <br /><br />";
311         }
312
313         // Do we have some content to output or return?
314         if (!empty($ret)) {
315                 // Not empty so let's put it out! ;)
316                 if ($return) {
317                         // Return the HTML code
318                         return $ret;
319                 } else {
320                         // Output direct
321                         OUTPUT_HTML($ret);
322                 }
323         } elseif (isBooleanConstantAndTrue('DEBUG_MODE')) {
324                 // Warning, empty output!
325                 return "E:".$template."<br />\n";
326         }
327 }
328
329 // Send mail out to an email address
330 function SEND_EMAIL($TO, $SUBJECT, $MSG, $HTML='N', $FROM="") {
331         // Compile subject line (for POINTS constant etc.)
332         $eval = "\$SUBJECT = \"".COMPILE_CODE(addslashes($SUBJECT))."\";";
333         eval($eval);
334         $SUBJECT = html_entity_decode($SUBJECT);
335
336         // Set from header
337         if (!eregi("@", $TO)) {
338                 // Value detected, load email from database
339                 if (EXT_IS_ACTIVE("msg")) {
340                         ADD_MESSAGE_TO_BOX($TO, $SUBJECT, $MSG, $HTML);
341                         return;
342                 } else {
343                         $result_email = SQL_QUERY_ESC("SELECT email FROM "._MYSQL_PREFIX."_user_data WHERE userid=%d LIMIT 1", array(bigintval($TO)), __FILE__, __LINE__);
344                         list($TO) = SQL_FETCHROW($result_email);
345                         SQL_FREERESULT($result_email);
346                 }
347         }
348
349         // Not in PHPMailer-Mode
350         if (!CHECK_PHPMAILER_USAGE()) {
351                 if (empty($FROM)) {
352                         // Load email header template
353                         $FROM = LOAD_EMAIL_TEMPLATE("header");
354                 } else {
355                         // Append header
356                         $FROM .= LOAD_EMAIL_TEMPLATE("header");
357                 }
358         } elseif (isBooleanConstantAndTrue('DEBUG_MODE')) {
359                 if (empty($FROM)) {
360                         // Load email header template
361                         $FROM = LOAD_EMAIL_TEMPLATE("header");
362                 } else {
363                         // Append header
364                         $FROM .= LOAD_EMAIL_TEMPLATE("header");
365                 }
366         }
367
368         // Fix HTML parameter (default is no!)
369         if (empty($HTML)) $HTML = 'N';
370         if (isBooleanConstantAndTrue('DEBUG_MODE')) {
371                 // In debug mode we want to display the mail instead of sending it away so we can debug this part
372                 echo "<PRE>
373 ".htmlentities(trim($FROM))."
374 To      : ".$TO."
375 Subject : ".$SUBJECT."
376 Message : ".$MSG."
377 </PRE>\n";
378         } elseif (($HTML == 'Y') && (EXT_IS_ACTIVE("html_mail", true))) {
379                 // Send mail as HTML away
380                 SEND_HTML_EMAIL($TO, $SUBJECT, $MSG, $FROM);
381         } elseif (!empty($TO)) {
382                 // Compile email
383                 $TO = COMPILE_CODE($TO);
384
385                 // Send Mail away
386                 SEND_RAW_EMAIL($TO, COMPILE_CODE($SUBJECT), COMPILE_CODE($MSG), $FROM);
387         } elseif ($HTML == 'N') {
388                 // Problem found!
389                 SEND_RAW_EMAIL(WEBMASTER, COMPILE_CODE($SUBJECT), COMPILE_CODE($MSG), $FROM);
390         }
391 }
392
393 // Check if legacy or PHPMailer command
394 // @private
395 function CHECK_PHPMAILER_USAGE() {
396         return ((defined('SMTP_HOSTNAME')) && (defined('SMTP_USER')) && (defined('SMTP_PASSWORD')) && (SMTP_HOSTNAME != "") && (SMTP_USER != ""));
397 }
398
399 /*
400  * Send out a raw email with PHPMailer class or legacy mail() command
401  */
402 function SEND_RAW_EMAIL ($to, $subject, $msg, $from) {
403         // Shall we use PHPMailer class or legacy mode?
404         if (CHECK_PHPMAILER_USAGE()) {
405                 // Use PHPMailer class with SMTP enabled
406                 require_once(PATH."inc/phpmailer/class.phpmailer.php");
407                 require_once(PATH."inc/phpmailer/class.smtp.php");
408
409                 // get new instance
410                 $mail = new PHPMailer();
411                 $mail->PluginDir  = PATH."inc/phpmailer/";
412
413                 $mail->IsSMTP();
414                 $mail->SMTPAuth   = true;
415                 $mail->Host       = SMTP_HOSTNAME;
416                 $mail->Port       = 25;
417                 $mail->Username   = SMTP_USER;
418                 $mail->Password   = SMTP_PASSWORD;
419                 $mail->From       = $from;
420                 $mail->FromName   = MAIN_TITLE;
421                 $mail->Subject    = $subject;
422                 if ((EXT_IS_ACTIVE("html_mail")) && (strip_tags($msg) != $msg)) {
423                         $mail->Body       = $msg;
424                         $mail->AltBody    = "Your mail program required HTML support to read this mail!";
425                         $mail->WordWrap   = 70;
426                         $mail->IsHTML(true);
427                 } else {
428                         $mail->Body       = $msg;
429                 }
430                 $mail->AddAddress($to, "");
431                 $mail->AddReplyTo(WEBMASTER,MAIN_TITLE);
432                 $mail->AddCustomHeader("Errors-To:".WEBMASTER);
433                 $mail->AddCustomHeader("X-Loop:".WEBMASTER);
434                 $mail->Send();
435         } else {
436                 // Use legacy mail() command
437                 @mail($to, $subject, $msg, $from);
438         }
439 }
440 //
441
442 // Generate a password in a specified length or use default password length
443 function GEN_PASS($LEN = 0) {
444         global $_CONFIG;
445         if ($LEN == 0) $LEN = $_CONFIG['pass_len'];
446
447         // Initialize array with all allowed chars
448         $ABC = explode(",", "a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,0,1,2,3,4,5,6,7,8,9,-,+,_,/");
449
450         // Initialize randomizer
451         mt_srand((double) microtime() * 1000000);
452
453         // Start creating password
454         $PASS = "";
455         for ($i = 0; $i < $LEN; $i++) {
456                 $PASS .= $ABC[mt_rand(0, sizeof($ABC) -1)];
457         }
458
459         // When the size is below 40 we can also add additional security by scrambling it
460         if (strlen($PASS) <= 40) {
461                 // Also scramble the password
462                 $PASS = scrambleString($PASS);
463         }
464
465         // Return the password
466         return $PASS;
467 }
468 //
469 function MAKE_DATETIME($time, $mode="0")
470 {
471         if ($time == 0) {
472                 // Never happend
473                 return NEVER_HAPPENED;
474         } else {
475                 // Filter out numbers
476                 $time = bigintval($time);
477         }
478
479         switch (GET_LANGUAGE())
480         {
481         case "de": // German date / time format
482                 switch ($mode)
483                 {
484                         case "0": $ret = date("d.m.Y \u\m H:i \U\h\\r", $time); break;
485                         case "1": $ret = strtolower(date("d.m.Y - H:i", $time)); break;
486                         case "2": $ret = date("d.m.Y|H:i", $time); break;
487                         case "3": $ret = date("d.m.Y", $time); break;
488                 }
489                 break;
490
491         default:        // Default is the US date / time format!
492                 switch ($mode)
493                 {
494                         case "0": $ret = date("r", $time); break;
495                         case "1": $ret = date("Y-m-d - g:i A", $time); break;
496                         case "2": $ret = date("y-m-d|H:i", $time); break;
497                         case "3": $ret = date("y-m-d", $time); break;
498                 }
499         }
500         return $ret;
501 }
502
503 // Translates the american decimal dot into a german comma
504 function TRANSLATE_COMMA($dotted, $cut=true)
505 {
506         global $_CONFIG;
507         // Default is 3 you can change this in admin area "Misc -> Misc Options"
508         if (empty($_CONFIG['max_comma'])) $_CONFIG['max_comma'] = "3";
509         if (!ereg("\.", $dotted)) $dotted .= ".".str_repeat("0", $_CONFIG['max_comma']);
510         if ($cut) {
511                 // Remove trailing zeros
512                 $dot = str_replace(".", "x", $dotted);
513                 while(substr($dot, -1, 1) == "0") {
514                         $dot = substr($dot, 0, -1);
515                 }
516
517                 if (substr($dot, -1, 1) == "x") {
518                         // Last char is the 'x'
519                         $dotted = substr($dot, 0, -1);
520                 } else {
521                         // Last char is a number
522                         $dotted = str_replace("x", ".", $dot);
523                 }
524         }
525
526         // Translate it now
527         switch (GET_LANGUAGE()) {
528         case "de":
529                 $pos = strpos($dotted, ".");
530                 if ($pos > 0) {
531                         if ($cut) {
532                                 // Cut x numbers behind comma
533                                 $dotted = str_replace(".", ",", substr($dotted, 0, ($pos + $_CONFIG['max_comma'] + 1)));
534                         } else {
535                                 // Replace comma with dot
536                                 $dotted = str_replace(".", ",", $dotted);
537                         }
538                 } elseif (!$cut) {
539                         if (empty($pos)) {
540                                 $dotted = "0,".str_repeat("0", $_CONFIG['max_comma']);
541                         } else {
542                                 $dotted .= ",".str_repeat("0", $_CONFIG['max_comma']);
543                         }
544                 }
545                 break;
546
547         default:
548                 if (!$cut) {
549                         if ($pos > 0) {
550                                 $dotted = substr($dotted, 0, ($pos + $_CONFIG['max_comma'] + 1));
551                         } else {
552                                 $dotted .= ".".str_repeat("0", $_CONFIG['max_comma']);
553                         }
554                 }
555                 break;
556         }
557         return $dotted;
558 }
559
560 //
561 function DEREFERER($URL) {
562         $URL = URL."/modules.php?module=loader&amp;url=".urlencode(base64_encode(COMPILE_CODE($URL)));
563         return $URL;
564 }
565
566 //
567 function TRANSLATE_SEX($sex) {
568         switch ($sex)
569         {
570                 case "M": $ret = SEX_M; break;
571                 case "F": $ret = SEX_F; break;
572                 case "C": $ret = SEX_C; break;
573                 default : $ret = $sex; break;
574         }
575         return $ret;
576 }
577 //
578 function GET_POOL_TYPE($PT)
579 {
580         switch ($PT)
581         {
582                 case "TEMP"   : $ret = POOL_TEMP;    break;
583                 case "SEND"   : $ret = POOL_SEND;    break;
584                 case "NEW"    : $ret = POOL_NEW;     break;
585                 case "ADMIN"  : $ret = POOL_ADMIN;   break;
586                 case "ACTIVE" : $ret = POOL_ACTIVE;  break;
587                 case "DELETED": $ret = POOL_DELETED; break;
588                 default       : $ret = POOL_UNKNOWN." (".$PT.")"; break;
589         }
590         return $ret;
591 }
592 //
593 function FRAMETESTER($URL)
594 {
595         global $_SERVER;
596         $URL = URL."/modules.php?module=frametester&amp;url=".urlencode(base64_encode(COMPILE_CODE($URL)));
597         return $URL;
598 }
599 //
600 function SELECTION_COUNT($array)
601 {
602         $ret = "0";
603         if (is_array($array))
604         {
605                 foreach ($array as $key=>$sel)
606                 {
607                         if (!empty($sel)) $ret++;
608                 }
609         }
610         return $ret;
611 }
612 //
613 function IMG_CODE ($code, $type, $DATA, $uid)
614 {
615         return "<IMG border=\"0\" alt=\"Code\" src=\"".URL."/mailid_top.php?uid=".$uid."&amp;".$type."=".$DATA."&amp;mode=img&amp;code=".$code."\">";
616 }
617 //
618 function TRANSLATE_STATUS($status)
619 {
620         switch ($status)
621         {
622         case "UNCONFIRMED":
623                 $ret = ACCOUNT_UNCONFIRMED;
624                 break;
625
626         case "CONFIRMED":
627                 $ret = ACCOUNT_CONFIRMED;
628                 break;
629
630         case "LOCKED":
631                 $ret = ACCOUNT_LOCKED;
632                 break;
633
634         default:
635                 $ret = UNKNOWN_STATUS_1.$status.UNKNOWN_STATUS_2;
636                 break;
637         }
638         return $ret;
639 }
640 //
641 function GET_LANGUAGE() {
642         if (!empty($_GET['mx_lang'])) {
643                 // Accept only first 2 chars
644                 $lang = substr($_GET['mx_lang'], 0, 2);
645         } else {
646                 // Do nothing
647                 $lang = "";
648         }
649
650         // Set default return value to default language from config
651         $ret = DEFAULT_LANG;
652
653         // Check GET variable and cookie
654         if (!empty($lang)) {
655                 // Check if main language file does exist
656                 if (file_exists(PATH."inc/language/".$lang.".php")) {
657                         // Okay found, so let's update cookies
658                         SET_LANGUAGE($lang);
659                 }
660         } elseif (!isSessionVariableSet('mx_lang')) {
661                 // Return stored value from cookie
662                 $ret = get_session('mx_lang');
663
664                 // Fixes a warning before the session has the mx_lang constant
665                 if (empty($ret)) $ret = DEFAULT_LANG;
666         }
667         return $ret;
668 }
669 //
670 function SET_LANGUAGE($lang) {
671         global $_CONFIG;
672
673         // Accept only first 2 chars!
674         $lang = substr(SQL_ESCAPE(strip_tags($lang)), 0, 2);
675
676         // Set cookie
677         set_session("mx_lang", $lang);
678 }
679 //
680 function LOAD_EMAIL_TEMPLATE($template, $content="", $UID="0") {
681         global $DATA, $_CONFIG, $REPLACER;
682
683         // Keept for backward-compatiblity (please replace these variables against our new {--CONST--} syntax!)
684         $MAIN_TITLE = MAIN_TITLE; $URL = URL; $WEBMASTER = WEBMASTER;
685         $surname = ""; $family = ""; $nick = ""; $sex = 'N';
686
687         // Prepare IP number and User Agent
688         $REMOTE_ADDR = getenv('REMOTE_ADDR');
689         $HTTP_USER_AGENT  = getenv('HTTP_USER_AGENT');
690
691         $ADMIN = MAIN_TITLE;
692         if (isSessionVariableSet('admin_login')) {
693                 // Load Admin data
694                 $result = SQL_QUERY_ESC("SELECT email FROM "._MYSQL_PREFIX."_admins WHERE login='%s' LIMIT 1",
695                         array(SQL_ESCAPE(get_session('admin_login'))), __FILE__, __LINE__);
696                 list($ADMIN) = SQL_FETCHROW($result);
697                 SQL_FREERESULT($result);
698         }
699
700         // Expiration in a nice output format
701         if ($_CONFIG['auto_purge'] == 0) {
702                 // Will never expire!
703                 $EXPIRATION = MAIL_WILL_NEVER_EXPIRE;
704         } elseif (function_exists('CREATE_FANCY_TIME')) {
705                 // Create nice date string
706                 $EXPIRATION = CREATE_FANCY_TIME($_CONFIG['auto_purge']);
707         } else {
708                 // Display days only
709                 $EXPIRATION = round($_CONFIG['auto_purge']/60/60/24)." "._DAYS;
710         }
711
712         switch ($template)
713         {
714         case "bonus-mail": // Load data for the bonus mail
715                 $BONUSID    = $DATA[0];
716                 $content    = $DATA[2];
717                 $points     = TRANSLATE_COMMA($DATA[4]);
718                 $TIME       = $DATA[5];
719                 $TARGET_URL = $DATA[8];
720                 $CATEGORY   = GET_CATEGORY($DATA[9]);
721                 $DATA[10]   = $UID;
722
723                 // Replace variables
724                 foreach ($REPLACER as $key=>$value)
725                 {
726                         if (isset($DATA[$key])) $content = str_replace($value, $DATA[$key], $content);
727                 }
728                 break;
729
730         case "order-admin":
731         case "order-member":
732                 $BLOCKS     = $_CONFIG['max_send'];
733                 $SUBJECT    = $DATA[0];
734                 $content    = $DATA[1];
735                 $PAYMENT    = GET_PAYMENT($DATA[3]);
736                 $TARGET_URL = $DATA[5];
737                 $CATEGORY   = GET_CATEGORY($DATA[6]);
738                 break;
739
740         case "order-reject":
741         case "order-deleted":
742         case "order-accept":
743                 $TARGET_URL = $DATA[0];
744                 $URL        = $DATA[0];
745                 $SUBJECT    = $DATA[1];
746                 break;
747
748         case "new-pass":
749                 $PASS       = $DATA[0];
750                 $REMOTE     = $DATA[1];
751                 break;
752
753         case "confirm-member":
754                 $points     = $_CONFIG['points_register'];
755                 break;
756
757         case "confirm-referral":
758                 $PERCENT    = $DATA[0];
759                 $LEVEL      = $DATA[1];
760                 $points     = $DATA[2];
761                 $REFID      = $DATA[3];
762                 break;
763
764         case "normal-mail":
765                 $SEND_UID   = $DATA[1];
766                 $CATEGORY   = GET_CATEGORY($DATA[9]);
767                 $TIME       = GET_PAY_POINTS($DATA[5], "time");
768                 $TARGET_URL = $DATA[7];
769                 $points     = TRANSLATE_COMMA(GET_PAY_POINTS($DATA[5], "payment"));
770                 // Warning! This ID has changed from 10 to 11!
771                 $MAILID     = $DATA[11];
772
773                 // Replace variables
774                 foreach ($REPLACER as $key=>$value)
775                 {
776                         if (isset($DATA[$key])) $content = str_replace($value, $DATA[$key], $content);
777                 }
778                 break;
779
780         case "done-member":
781         case "done-admin":
782                 $SEND_UID   = $DATA[1];
783                 $CATEGORY   = GET_CATEGORY($DATA[9]);
784                 $TARGET_URL = $DATA[7];
785                 break;
786
787         case "back-admin":
788         case "back-member":
789                 $points         = TRANSLATE_COMMA($DATA[10]);
790                 break;
791
792         case "add-points":
793                 $points         = bigintval($_POST['points']);
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                 OUTPUT_HTML(LOAD_URL_ERROR_1.$URL.LOAD_URL_ERROR_2);
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         {
1668                 // Failed!
1669                 return array("", "", "");
1670         }
1671
1672         // Generate request header
1673         $request  = "GET /".trim($script)." HTTP/1.0\r\n";
1674         $request .= "Host: ".$host."\r\n";
1675         $request .= "Referer: ".URL."/admin.php\r\n";
1676         $request .= "User-Agent: ".TITLE."/".FULL_VERSION."\r\n\r\n";
1677
1678         // Initialize array
1679         $response = array();
1680
1681         // Write request
1682         fputs($fp, $request);
1683
1684         // Read response
1685         while(!feof($fp)) {
1686                 $response[] = fgets($fp, 1024);
1687         }
1688
1689         // Close socket
1690         fclose($fp);
1691
1692         // Was the request successfull?
1693         if ((!ereg("200 OK", $response[0])) && (empty($response[0]))) {
1694                 // Not found / access forbidden
1695                 $response = array("", "", "");
1696         }
1697
1698         // Return response
1699         return $response;
1700 }
1701 // Taken from www.php.net eregi() user comments
1702 function VALIDATE_EMAIL($email) {
1703         // Compile email
1704         $email = COMPILE_CODE($email);
1705
1706         // Check first part of email address
1707         $first = "[-a-z0-9!#$%&\'*+/=?^_<{|}~]+(\.[-a-zA-Z0-9!#$%&\'*+/=?^_<{|}~]+)*";
1708
1709         //  Check domain
1710         $domain = "[a-z0-9-]+(\.[a-z0-9-]{2,5})+";
1711
1712         // Generate pattern
1713         $regex = "^".$first."@".$domain."$";
1714
1715         // Return check result
1716         return eregi($regex, $email);
1717 }
1718 // Function taken from user comments on www.php.net / function eregi()
1719 function VALIDATE_URL ($URL, $compile=true) {
1720         // Trim URL a little
1721         $URL = trim(urldecode($URL));
1722         //* DEBUG: */ echo $URL."<br />";
1723
1724         // Compile some chars out...
1725         if ($compile) $URL = COMPILE_CODE($URL, false, false, false);
1726         //* DEBUG: */ echo $URL."<br />";
1727
1728         // Check for the extension filter
1729         if (EXT_IS_ACTIVE("filter")) {
1730                 // Use the extension's filter set
1731                 return FILTER_VALIDATE_URL($URL, false);
1732         }
1733
1734         // If not installed, perform a simple test. Just make it sure there is always a http:// or
1735         // https:// in front of the URLs
1736         return (((substr($URL, 0, 7) == "http://") || (substr($URL, 0, 8) == "https://")) && (strlen($URL) >= 12));
1737 }
1738 //
1739 function MEMBER_ACTION_LINKS($uid, $status="") {
1740         // Define all main targets
1741         $TARGETS = array("del_user", "edit_user", "lock_user", "add_points", "sub_points");
1742
1743         // Begin of navigation links
1744         $eval = "\$OUT = \"[&nbsp;";
1745
1746         foreach ($TARGETS as $tar) {
1747                 $eval .= "<SPAN class=\\\"admin_user_link\\\"><A href=\\\"".URL."/modules.php?module=admin&amp;what=".$tar."&amp;u_id=".$uid."\\\" title=\\\"\".ADMIN_LINK_";
1748                 //* DEBUG: */ echo "*".$tar."/".$status."*<br />\n";
1749                 if (($tar == "lock_user") && ($status == "LOCKED")) {
1750                         // Locked accounts shall be unlocked
1751                         $eval .= "UNLOCK_USER";
1752                 } else {
1753                         // All other status is fine
1754                         $eval .= strtoupper($tar);
1755                 }
1756                 $eval .= "_TITLE.\"\\\">\".ADMIN_";
1757                 if (($tar == "lock_user") && ($status == "LOCKED")) {
1758                         // Locked accounts shall be unlocked
1759                         $eval .= "UNLOCK_USER";
1760                 } else {
1761                         // All other status is fine
1762                         $eval .= strtoupper($tar);
1763                 }
1764                 $eval .= ".\"</A></SPAN>&nbsp;|&nbsp;";
1765         }
1766
1767         // Finish navigation link
1768         $eval = substr($eval, 0, -7) . "]\";";
1769         eval($eval);
1770
1771         // Return string
1772         return $OUT;
1773 }
1774 // Function for backward-compatiblity
1775 function ADD_CATEGORY_TABLE ($MODE, $return=false) {
1776         // Load it from the register extension
1777         return REGISTER_ADD_CATEGORY_TABLE ($MODE, $return);
1778 }
1779 // Generate an email link
1780 function CREATE_EMAIL_LINK($email, $table="admins") {
1781         // Default email link (INSECURE! Spammer can read this by harvester programs)
1782         $EMAIL = "mailto:".$email;
1783
1784         // Check for several extensions
1785         if ((EXT_IS_ACTIVE("admins")) && ($table == "admins")) {
1786                 // Create email link for contacting admin in guest area
1787                 $EMAIL = ADMINS_CREATE_EMAIL_LINK($email);
1788         } elseif ((GET_EXT_VERSION("user") >= "0.3.3") && ($table == "user_data")) {
1789                 // Create email link for contacting a member within admin area (or later in other areas, too?)
1790                 $EMAIL = USER_CREATE_EMAIL_LINK($email);
1791         } elseif ((EXT_IS_ACTIVE("sponsor")) && ($table == "sponsor_data")) {
1792                 // Create email link to contact sponsor within admin area (or like the link above?)
1793                 $EMAIL = SPONSOR_CREATE_EMAIL_LINK($email);
1794         }
1795
1796         // Shall I close the link when there is no admin?
1797         if ((!IS_ADMIN()) && ($EMAIL == $email)) $EMAIL = "#"; // Closed!
1798
1799         // Return email link
1800         return $EMAIL;
1801 }
1802 // Generate a hash for extra-security for all passwords
1803 function generateHash($plainText, $salt = "") {
1804         global $_CONFIG, $_SERVER;
1805
1806         // Is the required extension "sql_patches" there?
1807         if ((GET_EXT_VERSION("sql_patches") < "0.3.6") || (GET_EXT_VERSION("sql_patches") == "")) {
1808                 // Extension sql_patches is missing/outdated so we return the plain text
1809                 return $plainText;
1810         }
1811
1812         // When the salt is empty build a new one, else use the first x configured characters as the salt
1813         if ($salt == "") {
1814                 // Build server string
1815                 $server = $_SERVER['PHP_SELF'].":".getenv('HTTP_USER_AGENT').":".getenv('SERVER_SOFTWARE').":".getenv('REMOTE_ADDR').":".":".filemtime(PATH."inc/databases.php");
1816
1817                 // Build key string
1818                 $keys   = SITE_KEY.":".DATE_KEY.":".$_CONFIG['secret_key'].":".$_CONFIG['file_hash'].":".date("d-m-Y (l-F-T)", $_CONFIG['patch_ctime']).":".$_CONFIG['master_salt'];
1819
1820                 // Additional data
1821                 $data = $plainText.":".uniqid(rand(), true).":".time();
1822
1823                 // Calculate number for generating the code
1824                 $a = time() + _ADD - 1;
1825
1826                 // Generate SHA1 sum from modula of number and the prime number
1827                 $sha1 = sha1(($a % _PRIME).$server.":".$keys.":".$data.":".date("d-m-Y (l-F-T)", time()).":".$a);
1828                 //* DEBUG: */ echo "SHA1=".$sha1." (".strlen($sha1).")<br>";
1829                 $sha1 = scrambleString($sha1);
1830                 //* DEBUG: */ echo "Scrambled=".$sha1." (".strlen($sha1).")<br>";
1831                 //* DEBUG: */ $sha1b = descrambleString($sha1);
1832                 //* DEBUG: */ echo "Descrambled=".$sha1b." (".strlen($sha1b).")<br>";
1833
1834                 // Generate the password salt string
1835                 $salt = substr($sha1, 0, $_CONFIG['salt_length']);
1836                 //* DEBUG: */ echo $salt." (".strlen($salt).")<br />";
1837         }
1838          else
1839         {
1840                 $salt = substr($salt, 0, $_CONFIG['salt_length']);
1841         }
1842
1843         // Return hash
1844         return $salt . sha1($salt . $plainText);
1845 }
1846 //
1847 function scrambleString($str) {
1848         global $_CONFIG;
1849
1850         // Init
1851         $scrambled = "";
1852
1853         // Final check, in case of failture it will return unscrambled string
1854         if (strlen($str) > 40) {
1855                 // The string is to long
1856                 return $str;
1857         } elseif (strlen($str) == 40) {
1858                 // From database
1859                 $scrambleNums = explode(":", $_CONFIG['pass_scramble']);
1860         } else {
1861                 // Generate new numbers
1862                 $scrambleNums = explode(":", genScrambleString(strlen($str)));
1863         }
1864
1865         // Scramble string here
1866         //* DEBUG: */ echo "***Original=".$str."***<br />";
1867         for ($idx = 0; $idx < strlen($str); $idx++) {
1868                 // Get char on scrambled position
1869                 $char = substr($str, $scrambleNums[$idx], 1);
1870
1871                 // Add it to final output string
1872                 $scrambled .= $char;
1873         }
1874
1875         // Return scrambled string
1876         //* DEBUG: */ echo "***Scrambled=".$scrambled."***<br />";
1877         return $scrambled;
1878 }
1879 //
1880 function descrambleString($str)
1881 {
1882         global $_CONFIG;
1883         // Scramble only 40 chars long strings
1884         if (strlen($str) != 40) return $str;
1885
1886         // Load numbers from config
1887         $scrambleNums = explode(":", $_CONFIG['pass_scramble']);
1888
1889         // Validate numbers
1890         if (count($scrambleNums) != 40) return $str;
1891
1892         // Begin descrambling
1893         $orig = str_repeat(" ", 40);
1894         //* DEBUG: */ echo "+++Scrambled=".$str."+++<br />";
1895         for ($idx = 0; $idx < 40; $idx++)
1896         {
1897                 $char = substr($str, $idx, 1);
1898                 $orig = substr_replace($orig, $char, $scrambleNums[$idx], 1);
1899         }
1900
1901         // Return scrambled string
1902         //* DEBUG: */ echo "+++Original=".$orig."+++<br />";
1903         return $orig;
1904 }
1905 //
1906 function genScrambleString($len) {
1907         // Prepare randomizer and array for the numbers
1908         mt_srand((double) microtime() * 1000000);
1909         $scrambleNumbers = array();
1910
1911         // First we need to setup randomized numbers from 0 to 31
1912         for ($idx = 0; $idx < $len; $idx++) {
1913                 // Generate number
1914                 $rand = mt_rand(0, ($len -1));
1915
1916                 // Check for it by creating more numbers
1917                 while (array_key_exists($rand, $scrambleNumbers)) {
1918                         $rand = mt_rand(0, ($len -1));
1919                 }
1920
1921                 // Add number
1922                 $scrambleNumbers[$rand] = $rand;
1923         }
1924
1925         // So let's create the string for storing it in database
1926         $scrambleString = implode(":", $scrambleNumbers);
1927         return $scrambleString;
1928 }
1929 // Append data like session ID referral ID to the given URL which would
1930 // normally be stored in cookies
1931 function ADD_URL_DATA($URL)
1932 {
1933         global $_CONFIG;
1934         $ADD = "";
1935
1936         // Determine URL binder
1937         $BIND = "?";
1938         if (strpos($URL, "?") !== false) $BIND = "&";
1939
1940         if ((!defined('__COOKIES')) || ((!__COOKIES))) {
1941                 // Cookies are not accepted
1942                 if ((!empty($_GET['refid'])) && (strpos($URL, "refid=") == 0)) {
1943                         // Cookie found in URL
1944                         $ADD .= $BIND."refid=".bigintval($_GET['refid']);
1945                 } elseif ((GET_EXT_VERSION("sql_patches") != "") && ($_CONFIG['def_refid'] > 0)) {
1946                         // Not found! So let's set default here
1947                         $ADD .= $BIND."refid=".$_CONFIG['def_refid'];
1948                 }
1949
1950                 // Is there already added data? Then change the binder
1951                 if (!empty($ADD)) $BIND = "&";
1952
1953                 // Add session ID
1954                 if ((!empty($_GET['PHPSESSID'])) && (strpos($URL, "PHPSESSID=") == 0)) {
1955                         // Add session from URL
1956                         $ADD .= $BIND."PHPSESSID=".SQL_ESCAPE(strip_tags($_GET['PHPSESSID']));
1957                 } else {
1958                         // Add current session
1959                         $ADD .= $BIND."PHPSESSID=".session_id();
1960                 }
1961         }
1962
1963         // Add all together and return it
1964         return $URL.$ADD;
1965 }
1966 //
1967 function generatePassString($passHash) {
1968         global $_CONFIG;
1969
1970         // Return vanilla password hash
1971         $ret = $passHash;
1972
1973         // Is a secret key and master salt already initialized?
1974         if ((!empty($_CONFIG['secret_key'])) && (!empty($_CONFIG['master_salt']))) {
1975                 // Only calculate when the secret key is generated
1976                 $newHash = ""; $start = 9;
1977                 for ($idx = 0; $idx < 10; $idx++) {
1978                         $part1 = hexdec(substr($passHash, $start, 4));
1979                         $part2 = hexdec(substr($_CONFIG['secret_key'], $start, 4));
1980                         $mod = dechex($idx);
1981                         if ($part1 > $part2) {
1982                                 $mod = dechex(sqrt(($part1 - $part2) * _PRIME / pi()));
1983                         } elseif ($part2 > $part1) {
1984                                 $mod = dechex(sqrt(($part2 - $part1) * _PRIME / pi()));
1985                         }
1986                         $mod = substr(round($mod), 0, 4);
1987                         $mod = str_repeat('0', 4-strlen($mod)).$mod;
1988                         //* DEBUG: */ echo "*".$start."=".$mod."*<br>";
1989                         $start += 4;
1990                         $newHash .= $mod;
1991                 }
1992
1993                 //* DEBUG: */ die($passHash."<br>".$newHash." (".strlen($newHash).")");
1994                 $ret = generateHash($newHash, $_CONFIG['master_salt']);
1995         }
1996
1997         // Return result
1998         return $ret;
1999 }
2000 // Fix "deleted" cookies
2001 function FIX_DELETED_COOKIES ($cookies) {
2002         // Is this an array with entries?
2003         if ((is_array($cookies)) && (count($cookies) > 0)) {
2004                 // Then check all cookies if they are marked as deleted!
2005                 foreach ($cookies as $cookieName) {
2006                         // Is the cookie set to "deleted"?
2007                         if (get_session($cookieName) == "deleted") {
2008                                 set_session($cookieName, "");
2009                         }
2010                 }
2011         }
2012 }
2013 // Output error messages in a fasioned way and die...
2014 function mxchange_die ($msg) {
2015         global $footer;
2016
2017         // Load the message template
2018         LOAD_TEMPLATE("admin_settings_saved", false, $msg);
2019
2020         // Load footer
2021         include(PATH."inc/footer.php");
2022
2023         // Exit explicitly
2024         exit;
2025 }
2026
2027 // Display parsing time and number of SQL queries in footer
2028 function DISPLAY_PARSING_TIME_FOOTER() {
2029         global $startTime, $_CONFIG;
2030         $endTime = microtime(true);
2031
2032         // Is the timer started?
2033         if (!isset($GLOBALS['startTime'])) {
2034                 // Abort here
2035                 return false;
2036         }
2037
2038         // "Explode" both times
2039         $start = explode(" ", $GLOBALS['startTime']);
2040         $end = explode(" ", $endTime);
2041         $runTime = $end[0] - $start[0];
2042         if ($runTime < 0) $runTime = 0;
2043         $runTime = TRANSLATE_COMMA($runTime);
2044
2045         // Prepare output
2046         $content = array(
2047                 'runtime'               => $runTime,
2048                 'numSQLs'               => ($_CONFIG['sql_count'] + 1),
2049                 'numTemplates'  => ($_CONFIG['num_templates'] + 1)
2050         );
2051
2052         // Load the template
2053         LOAD_TEMPLATE("show_timings", false, $content);
2054 }
2055
2056 // Unset/set session variables
2057 function set_session ($var, $value) {
2058         global $CSS;
2059         // Abort in CSS mode here
2060         if ($CSS == 1) return true;
2061
2062         // Trim value and session variable
2063         $var = trim(SQL_ESCAPE($var)); $value = trim($value);
2064
2065         // Is the session variable set?
2066         if (("".$value."" == "") && (isSessionVariableSet($var))) {
2067                 // Remove the session
2068                 //* DEBUG: */ echo "UNSET:".$var."=".get_session($var)."<br />\n";
2069                 unset($_SESSION[$var]);
2070                 return session_unregister($var);
2071         } elseif (("".$value."" != "") && (!isSessionVariableSet($var))) {
2072                 // Set session
2073                 //* DEBUG: */ echo "SET:".$var."=".$value."<br />\n";
2074                 $_SESSION[$var] =  $value;
2075                 return session_register($var);
2076         }
2077
2078         // Return always true if the session variable is already set.
2079         // Keept me busy for a longer while...
2080         //* DEBUG: */ echo "IGNORED:".$var."=".$value."<br />\n";
2081         return true;
2082 }
2083 // Check wether a boolean constant is set
2084 // Taken from user comments in PHP documentation for function constant()
2085 function isBooleanConstantAndTrue($constname) { // : Boolean
2086         $res = false;
2087         if (defined($constname)) $res = (constant($constname) === true);
2088         return($res);
2089 }
2090
2091 // Check wether a session variable is set
2092 function isSessionVariableSet($var) {
2093         return (isset($_SESSION[$var]));
2094 }
2095
2096 // Returns wether the value of the session variable or NULL if not set
2097 function get_session($var) {
2098         if (!isset($_SESSION)) session_start();
2099
2100         // Default is not found! ;-)
2101         $value = null;
2102
2103         // Is the variable there?
2104         if (isSessionVariableSet($var)) {
2105                 // Then  get it secured!
2106                 $value = SQL_ESCAPE($_SESSION[$var]);
2107         }
2108
2109         // Return the value
2110         return $value;
2111 }
2112
2113 //
2114 //////////////////////////////////////////////
2115 //                                          //
2116 // AUTOMATICALLY RE-GNERATED FUNCTIONS ONLY //
2117 //                                          //
2118 //////////////////////////////////////////////
2119 //
2120 if (!function_exists('html_entity_decode'))
2121 {
2122         // Taken from documentation on www.php.net
2123         function html_entity_decode($string)
2124         {
2125                 $trans_tbl = get_html_translation_table(HTML_ENTITIES);
2126                 $trans_tbl = array_flip($trans_tbl);
2127                 return strtr($string, $trans_tbl);
2128         }
2129 }
2130 //
2131 ?>