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