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