d6a9cb65eb4a910efe4db53dd2c17190e2c2a2ac
[mailer.git] / inc / functions.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                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  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         die();
42 } // END - if
43
44 // Output HTML code directly or 'render' it. You addionally switch the new-line character off
45 function outputHtml ($htmlCode, $newLine = true) {
46         // Init output
47         if (!isset($GLOBALS['output'])) $GLOBALS['output'] = '';
48
49         // Transfer username
50         $username = getMessage('USERNAME_UNKNOWN');
51         if (isset($GLOBALS['username'])) $username = getUsername();
52
53         // Do we have HTML-Code here?
54         if (!empty($htmlCode)) {
55                 // Yes, so we handle it as you have configured
56                 switch (getConfig('OUTPUT_MODE')) {
57                         case 'render':
58                                 // That's why you don't need any \n at the end of your HTML code... :-)
59                                 if (getPhpCaching() == 'on') {
60                                         // Output into PHP's internal buffer
61                                         outputRawCode($htmlCode);
62
63                                         // That's why you don't need any \n at the end of your HTML code... :-)
64                                         if ($newLine === true) print("\n");
65                                 } else {
66                                         // Render mode for old or lame servers...
67                                         $GLOBALS['output'] .= $htmlCode;
68
69                                         // That's why you don't need any \n at the end of your HTML code... :-)
70                                         if ($newLine === true) $GLOBALS['output'] .= "\n";
71                                 }
72                                 break;
73
74                         case 'direct':
75                                 // If we are switching from render to direct output rendered code
76                                 if ((!empty($GLOBALS['output'])) && (getPhpCaching() != 'on')) { outputRawCode($GLOBALS['output']); $GLOBALS['output'] = ''; }
77
78                                 // The same as above... ^
79                                 outputRawCode($htmlCode);
80                                 if ($newLine === true) print("\n");
81                                 break;
82
83                         default:
84                                 // Huh, something goes wrong or maybe you have edited config.php ???
85                                 app_die(__FUNCTION__, __LINE__, '<strong>{--FATAL_ERROR--}:</strong> {--LANG_NO_RENDER_DIRECT--}');
86                                 break;
87                 } // END - switch
88         } elseif (getPhpCaching() == 'on') {
89                 // Output cached HTML code
90                 $GLOBALS['output'] = ob_get_contents();
91
92                 // Clear output buffer for later output if output is found
93                 if (!empty($GLOBALS['output'])) {
94                         clearOutputBuffer();
95                 } // END - if
96
97                 // Extension 'rewrite' installed?
98                 if ((isExtensionActive('rewrite')) && (getOutputMode() != 1)) {
99                         $GLOBALS['output'] = rewriteLinksInCode($GLOBALS['output']);
100                 } // END - if
101
102                 // Send all HTTP headers
103                 sendHttpHeaders();
104
105                 // Compile and run finished rendered HTML code
106                 compileFinalOutput();
107
108                 // Output code here, DO NOT REMOVE! ;-)
109                 outputRawCode($GLOBALS['output']);
110         } elseif ((getConfig('OUTPUT_MODE') == 'render') && (!empty($GLOBALS['output']))) {
111                 // Rewrite links when rewrite extension is active
112                 if ((isExtensionActive('rewrite')) && (getOutputMode() != 1)) {
113                         $GLOBALS['output'] = rewriteLinksInCode($GLOBALS['output']);
114                 } // END - if
115
116                 // Send all HTTP headers
117                 sendHttpHeaders();
118
119                 // Compile and run finished rendered HTML code
120                 compileFinalOutput();
121
122                 // Output code here, DO NOT REMOVE! ;-)
123                 outputRawCode($GLOBALS['output']);
124         }
125 }
126
127 // Sends out all headers required for HTTP/1.1 reply
128 function sendHttpHeaders () {
129         // Used later
130         $now = gmdate('D, d M Y H:i:s') . ' GMT';
131
132         // Send HTTP header
133         sendHeader('HTTP/1.1 200');
134
135         // General headers for no caching
136         sendHeader('Expires: ' . $now); // RFC2616 - Section 14.21
137         sendHeader('Last-Modified: ' . $now);
138         sendHeader('Cache-Control: no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0'); // HTTP/1.1
139         sendHeader('Pragma: no-cache'); // HTTP/1.0
140         sendHeader('Connection: Close');
141         sendHeader('Content-Type: ' . getContentType() . '; charset=UTF-8');
142         sendHeader('Content-Language: ' . getLanguage());
143 }
144
145 // Compiles the final output
146 function compileFinalOutput () {
147         // Init counter
148         $cnt = '0';
149
150         // Compile all out
151         while (((strpos($GLOBALS['output'], '{--') > 0) || (strpos($GLOBALS['output'], '{!') > 0) || (strpos($GLOBALS['output'], '{?') > 0)) && ($cnt < 3)) {
152                 // Init common variables
153                 $content = array();
154                 $newContent = '';
155
156                 // Compile it
157                 $eval = "\$newContent = \"".compileCode(escapeQuotes($GLOBALS['output']))."\";";
158                 eval($eval);
159
160                 // Was that eval okay?
161                 if (empty($newContent)) {
162                         // Something went wrong!
163                         debug_report_bug('Evaluation error:<pre>' . linenumberCode($eval) . '</pre>', false);
164                 } // END - if
165                 $GLOBALS['output'] = $newContent;
166
167                 // Count round
168                 $cnt++;
169         } // END - while
170
171         // Compress it?
172         if (!empty($_SERVER['HTTP_ACCEPT_ENCODING']) && (strpos('gzip', $_SERVER['HTTP_ACCEPT_ENCODING']) !== null)) {
173                 // Compress it for HTTP gzip
174                 $GLOBALS['output'] = gzencode($GLOBALS['output'], 9, true);
175
176                 // Add header
177                 sendHeader('Content-Encoding: gzip');
178         } elseif (!empty($_SERVER['HTTP_ACCEPT_ENCODING']) && (strpos('deflate', $_SERVER['HTTP_ACCEPT_ENCODING']) !== null)) {
179                 // Compress it for HTTP deflate
180                 $GLOBALS['output'] = gzcompress($GLOBALS['output'], 9);
181
182                 // Add header
183                 sendHeader('Content-Encoding: deflate');
184         }
185
186         // Add final length
187         sendHeader('Content-Length: ' . strlen($GLOBALS['output']));
188
189         // Flush all headers
190         flushHeaders();
191 }
192
193 // Output the raw HTML code
194 function outputRawCode ($htmlCode) {
195         // Output stripped HTML code to avoid broken JavaScript code, etc.
196         print(str_replace('{BACK}', "\\", $htmlCode));
197
198         // Flush the output if only getPhpCaching() is not 'on'
199         if (getPhpCaching() != 'on') {
200                 // Flush it
201                 flush();
202         } // END - if
203 }
204
205 // Init fatal message array
206 function initFatalMessages () {
207         $GLOBALS['fatal_messages'] = array();
208 }
209
210 // Getter for whole fatal error messages
211 function getFatalArray () {
212         return $GLOBALS['fatal_messages'];
213 }
214
215 // Add a fatal error message to the queue array
216 function addFatalMessage ($F, $L, $message, $extra = '') {
217         if (is_array($extra)) {
218                 // Multiple extras for a message with masks
219                 $message = call_user_func_array('sprintf', $extra);
220         } elseif (!empty($extra)) {
221                 // $message is text with a mask plus extras to insert into the text
222                 $message = sprintf($message, $extra);
223         }
224
225         // Add message to $GLOBALS['fatal_messages']
226         $GLOBALS['fatal_messages'][] = $message;
227
228         // Log fatal messages away
229         debug_report_bug($message);
230         logDebugMessage($F, $L, 'Fatal error message: ' . $message);
231 }
232
233 // Getter for total fatal message count
234 function getTotalFatalErrors () {
235         // Init coun
236         $count = '0';
237
238         // Do we have at least the first entry?
239         if (!empty($GLOBALS['fatal_messages'][0])) {
240                 // Get total count
241                 $count = count($GLOBALS['fatal_messages']);
242         } // END - if
243
244         // Return value
245         return $count;
246 }
247
248 // Load a template file and return it's content (only it's name; do not use ' or ")
249 function loadTemplate ($template, $return = false, $content = array()) {
250         // @TODO Remove this sanity-check if all is fine
251         if (!is_bool($return)) debug_report_bug('return is not bool (' . gettype($return) . ')');
252
253         // @TODO Try to rewrite all $DATA to $content
254         global $DATA;
255
256         // Do we have cache?
257         if (isTemplateCached($template)) {
258                 // Evaluate the cache
259                 eval(readTemplateCache($template));
260         } elseif (!isset($GLOBALS['template_eval'][$template])) {
261                 // Add more variables which you want to use in your template files
262                 $username = getUsername();
263
264                 // Make all template names lowercase
265                 $template = strtolower($template);
266
267                 // Init some data
268                 $ret = '';
269                 if (empty($GLOBALS['refid'])) $GLOBALS['refid'] = '0';
270
271                 // Base directory
272                 $basePath = sprintf("%stemplates/%s/html/", getConfig('PATH'), getLanguage());
273                 $extraPath = detectExtraTemplatePath($template);;
274
275                 ////////////////////////
276                 // Generate file name //
277                 ////////////////////////
278                 $FQFN = $basePath . $extraPath . $template . '.tpl';
279
280                 // Does the special template exists?
281                 if (!isFileReadable($FQFN)) {
282                         // Reset to default template
283                         $FQFN = $basePath . $template . '.tpl';
284                 } // END - if
285
286                 // Now does the final template exists?
287                 if (isFileReadable($FQFN)) {
288                         // Count the template load
289                         incrementConfigEntry('num_templates');
290
291                         // The local file does exists so we load it. :)
292                         $GLOBALS['tpl_content'] = readFromFile($FQFN);
293
294                         // Do we have to compile the code?
295                         $ret = '';
296                         if ((strpos($GLOBALS['tpl_content'], '$') !== false) || (strpos($GLOBALS['tpl_content'], '{--') !== false) || (strpos($GLOBALS['tpl_content'], '{!') !== false) || (strpos($GLOBALS['tpl_content'], '{?') !== false)) {
297                                 // Normal HTML output?
298                                 if (getOutputMode() == '0') {
299                                         // Add surrounding HTML comments to help finding bugs faster
300                                         $ret = '<!-- Template ' . $template . " - Start -->\n" . $GLOBALS['tpl_content'] . '<!-- Template ' . $template . " - End -->\n";
301
302                                         // Prepare eval() command
303                                         $eval = '$ret = "' . compileCode(escapeQuotes($ret)) . '";';
304                                 } elseif (substr($template, 0, 3) == 'js_') {
305                                         // JavaScripts don't like entities and timings
306                                         $eval = '$ret = decodeEntities("' . compileRawCode(escapeJavaScriptQuotes($GLOBALS['tpl_content'])) . '");';
307                                 } else {
308                                         // Prepare eval() command, other output doesn't like entities, maybe
309                                         $eval = '$ret = decodeEntities("' . compileRawCode(escapeQuotes($GLOBALS['tpl_content'])) . '");';
310                                 }
311                         } else {
312                                 // Add surrounding HTML comments to help finding bugs faster
313                                 $ret = '<!-- Template ' . $template . " - Start -->\n" . $GLOBALS['tpl_content'] . '<!-- Template ' . $template . " - End -->\n";
314                                 $eval = '$ret = "' . compileRawCode(escapeQuotes($ret)) . '";';
315                         } // END - if
316
317                         // Cache the eval() command here
318                         $GLOBALS['template_eval'][$template] = $eval;
319
320                         // Eval the code
321                         eval($GLOBALS['template_eval'][$template]);
322                 } elseif ((isAdmin()) || ((isInstalling()) && (!isInstalled()))) {
323                         // Only admins shall see this warning or when installation mode is active
324                         $ret = '<br /><span class="guest_failed">{--TEMPLATE_404--}</span><br />
325 (' . $template . ')<br />
326 <br />
327 {--TEMPLATE_CONTENT--}
328 <pre>' . print_r($content, true) . '</pre>
329 {--TEMPLATE_DATA--}
330 <pre>' . print_r($DATA, true) . '</pre>
331 <br /><br />';
332                 } else {
333                         // No file!
334                         $GLOBALS['template_eval'][$template] = '404';
335                 }
336         } else {
337                 // Eval the code
338                 eval($GLOBALS['template_eval'][$template]);
339         }
340
341         // Do we have some content to output or return?
342         if (!empty($ret)) {
343                 // Not empty so let's put it out! ;)
344                 if ($return === true) {
345                         // Return the HTML code
346                         return $ret;
347                 } else {
348                         // Output directly
349                         outputHtml($ret);
350                 }
351         } elseif (isDebugModeEnabled()) {
352                 // Warning, empty output!
353                 return 'E:' . $template . ',content=<pre>' . print_r($content, true) . '</pre>';
354         }
355 }
356
357 // Detects the extra template path from given template name
358 function detectExtraTemplatePath ($template) {
359         // Default is empty
360         $extraPath = '';
361
362         // Do we have cache?
363         if (!isset($GLOBALS['extra_path'][$template])) {
364                 // Check for admin/guest/member/etc. templates
365                 if (substr($template, 0, 6) == 'admin_') {
366                         // Admin template found
367                         $extraPath = 'admin/';
368                 } elseif (substr($template, 0, 6) == 'guest_') {
369                         // Guest template found
370                         $extraPath = 'guest/';
371                 } elseif (substr($template, 0, 7) == 'member_') {
372                         // Member template found
373                         $extraPath = 'member/';
374                 } elseif (substr($template, 0, 7) == 'select_') {
375                         // Selection template found
376                         $extraPath = 'select/';
377                 } elseif (substr($template, 0, 8) == 'install_') {
378                         // Installation template found
379                         $extraPath = 'install/';
380                 } elseif (substr($template, 0, 4) == 'ext_') {
381                         // Extension template found
382                         $extraPath = 'ext/';
383                 } elseif (substr($template, 0, 3) == 'la_') {
384                         // 'Logical-area' template found
385                         $extraPath = 'la/';
386                 } elseif (substr($template, 0, 3) == 'js_') {
387                         // JavaScript template found
388                         $extraPath = 'js/';
389                 } elseif (substr($template, 0, 5) == 'menu_') {
390                         // Menu template found
391                         $extraPath = 'menu/';
392                 } else {
393                         // Test for extension
394                         $test = substr($template, 0, strpos($template, '_'));
395
396                         // Probe for valid extension name
397                         if (isExtensionNameValid($test)) {
398                                 // Set extra path to extension's name
399                                 $extraPath = $test . '/';
400                         } // END - if
401                 }
402
403                 // Store it in cache
404                 $GLOBALS['extra_path'][$template] = $extraPath;
405         } // END - if
406
407         // Return result
408         return $GLOBALS['extra_path'][$template];
409 }
410
411 // Loads an email template and compiles it
412 function loadEmailTemplate ($template, $content = array(), $userid = '0') {
413         global $DATA;
414
415         // Make sure all template names are lowercase!
416         $template = strtolower($template);
417
418         // Default 'nickname' if extension is not installed
419         $nick = '---';
420
421         // Neutral email address is default
422         $email = getConfig('WEBMASTER');
423
424         // Is content an array?
425         if (is_array($content)) {
426                 // Add expiration to array
427                 if (getConfig('auto_purge') == '0') {
428                         // Will never expire!
429                         $content['expiration'] = getMessage('MAIL_WILL_NEVER_EXPIRE');
430                 } else {
431                         // Create nice date string
432                         $content['expiration'] = createFancyTime(getConfig('auto_purge'));
433                 }
434         } // END - if
435
436         // Load user's data
437         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):UID={$userid},template={$template},content[]=".gettype($content).'<br />');
438         if (($userid > 0) && (is_array($content))) {
439                 // If nickname extension is installed, fetch nickname as well
440                 if ((isExtensionActive('nickname')) && (isNicknameUsed($userid))) {
441                         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):NICKNAME!<br />");
442                         // Load by nickname
443                         fetchUserData($userid, 'nickname');
444                 } else {
445                         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):NO-NICK!<br />");
446                         /// Load by userid
447                         fetchUserData($userid);
448                 }
449
450                 // Merge data if valid
451                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):content()=".count($content)." - PRE<br />");
452                 if (isUserDataValid()) {
453                         $content = merge_array($content, getUserDataArray());
454                 } // END - if
455                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):content()=".count($content)." - AFTER<br />");
456         } // END - if
457
458         // Translate M to male or F to female if present
459         if (isset($content['gender'])) $content['gender'] = translateGender($content['gender']);
460
461         // Overwrite email from data if present
462         if (isset($content['email'])) $email = $content['email'];
463
464         // Store email for some functions in global data array
465         // @TODO Do only use $content, not $DATA or raw variables
466         $DATA['email'] = $email;
467
468         // Base directory
469         $basePath = sprintf("%stemplates/%s/emails/", getConfig('PATH'), getLanguage());
470
471         // Detect extra path
472         $extraPath = detectExtraTemplatePath($template);
473
474         // Generate full FQFN
475         $FQFN = $basePath . $extraPath . $template . '.tpl';
476
477         // Does the special template exists?
478         if (!isFileReadable($FQFN)) {
479                 // Reset to default template
480                 $FQFN = $basePath . $template . '.tpl';
481         } // END - if
482
483         // Now does the final template exists?
484         $newContent = '';
485         if (isFileReadable($FQFN)) {
486                 // The local file does exists so we load it. :)
487                 $GLOBALS['tpl_content'] = readFromFile($FQFN);
488
489                 // Run code
490                 $GLOBALS['tpl_content'] = "\$newContent = decodeEntities(\"".compileRawCode(escapeQuotes($GLOBALS['tpl_content']))."\");";
491                 eval($GLOBALS['tpl_content']);
492         } elseif (!empty($template)) {
493                 // Template file not found!
494                 $newContent = '{--TEMPLATE_404--}: ' . $template . '<br />
495 {--TEMPLATE_CONTENT--}
496 <pre>' . print_r($content, true) . '</pre>
497 {--TEMPLATE_DATA--}
498 <pre>' . print_r($DATA, true) . '</pre>
499 <br /><br />';
500
501                 // Debug mode not active? Then remove the HTML tags
502                 if (!isDebugModeEnabled()) $newContent = secureString($newContent);
503         } else {
504                 // No template name supplied!
505                 $newContent = getMessage('NO_TEMPLATE_SUPPLIED');
506         }
507
508         // Is there some content?
509         if (empty($newContent)) {
510                 // Compiling failed
511                 $newContent = "Compiler error for template " . $template . " !\nUncompiled content:\n" . $GLOBALS['tpl_content'];
512
513                 // Add last error if the required function exists
514                 if (function_exists('error_get_last')) $newContent .= "\n--------------------------------------\nDebug:\n".print_r(error_get_last(), true)."--------------------------------------\nPlease don't alter these informations!\nThanx.";
515         } // END - if
516
517         // Remove content and data
518         unset($content);
519         unset($DATA);
520
521         // Return content
522         return $newContent;
523 }
524
525 // Send mail out to an email address
526 function sendEmail ($toEmail, $subject, $message, $isHtml = 'N', $mailHeader = '') {
527         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):TO={$toEmail},SUBJECT={$subject}<br />");
528
529         // Compile subject line (for POINTS constant etc.)
530         eval("\$subject = decodeEntities(\"".compileRawCode(escapeQuotes($subject))."\");");
531
532         // Set from header
533         if ((!eregi('@', $toEmail)) && ($toEmail > 0)) {
534                 // Value detected, is the message extension installed?
535                 // @TODO Extension 'msg' does not exist
536                 if (isExtensionActive('msg')) {
537                         ADD_MESSAGE_TO_BOX($toEmail, $subject, $message, $isHtml);
538                         return;
539                 } else {
540                         // Does the user exist?
541                         if (fetchUserData($toEmail)) {
542                                 // Get the email
543                                 $toEmail = getUserData('email');
544                         } else {
545                                 // Set webmaster
546                                 $toEmail = getConfig('WEBMASTER');
547                         }
548                 }
549         } elseif ($toEmail == '0') {
550                 // Is the webmaster!
551                 $toEmail = getConfig('WEBMASTER');
552         }
553         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):TO={$toEmail}<br />");
554
555         // Check for PHPMailer or debug-mode
556         if (!checkPhpMailerUsage()) {
557                 // Not in PHPMailer-Mode
558                 if (empty($mailHeader)) {
559                         // Load email header template
560                         $mailHeader = loadEmailTemplate('header');
561                 } else {
562                         // Append header
563                         $mailHeader .= loadEmailTemplate('header');
564                 }
565         } elseif (isDebugModeEnabled()) {
566                 if (empty($mailHeader)) {
567                         // Load email header template
568                         $mailHeader = loadEmailTemplate('header');
569                 } else {
570                         // Append header
571                         $mailHeader .= loadEmailTemplate('header');
572                 }
573         }
574
575         // Compile "TO"
576         eval("\$toEmail = \"".compileRawCode(escapeQuotes($toEmail))."\";");
577
578         // Compile "MSG"
579         eval("\$message = \"".str_replace('$', '&#36;', compileRawCode(escapeQuotes($message)))."\";");
580
581         // Fix HTML parameter (default is no!)
582         if (empty($isHtml)) $isHtml = 'N';
583         if (isDebugModeEnabled()) {
584                 // In debug mode we want to display the mail instead of sending it away so we can debug this part
585                 outputHtml('<pre>
586 Headers : ' . str_replace('<', '&lt', str_replace('>', '&gt;', secureString(trim($mailHeader)))) . '
587 To      : ' . $toEmail . '
588 Subject : ' . $subject . '
589 Message : ' . $message . '
590 </pre>');
591         } elseif (($isHtml == 'Y') && (isExtensionActive('html_mail'))) {
592                 // Send mail as HTML away
593                 sendHtmlEmail($toEmail, $subject, $message, $mailHeader);
594         } elseif (!empty($toEmail)) {
595                 // Send Mail away
596                 sendRawEmail($toEmail, $subject, $message, $mailHeader);
597         } elseif ($isHtml != 'Y') {
598                 // Problem found!
599                 sendRawEmail(getConfig('WEBMASTER'), '[PROBLEM:]' . $subject, $message, $mailHeader);
600         }
601 }
602
603 // Check to use wether legacy mail() command or PHPMailer class
604 // @TODO Rewrite this to an extension 'smtp'
605 // @private
606 function checkPhpMailerUsage() {
607         return ((getConfig('SMTP_HOSTNAME') != '') && (getConfig('SMTP_USER') != ''));
608 }
609
610 // Send out a raw email with PHPMailer class or legacy mail() command
611 function sendRawEmail ($toEmail, $subject, $message, $from) {
612         // Just compile all again, to put out all configs, etc.
613         eval('$toEmail = decodeEntities("' . compileRawCode(escapeQuotes($toEmail)) . '");');
614         eval('$subject = decodeEntities("' . compileRawCode(escapeQuotes($subject)) . '");');
615         eval('$message = decodeEntities("' . compileRawCode(escapeQuotes($message)) . '");');
616         eval('$from    = decodeEntities("' . compileRawCode(escapeQuotes($from))    . '");');
617
618         // Shall we use PHPMailer class or legacy mode?
619         if (checkPhpMailerUsage()) {
620                 // Use PHPMailer class with SMTP enabled
621                 loadIncludeOnce('inc/phpmailer/class.phpmailer.php');
622                 loadIncludeOnce('inc/phpmailer/class.smtp.php');
623
624                 // get new instance
625                 $mail = new PHPMailer();
626
627                 // Set charset to UTF-8
628                 $mail->CharSet('UTF-8');
629
630                 // Path for PHPMailer
631                 $mail->PluginDir  = sprintf("%sinc/phpmailer/", getConfig('PATH'));
632
633                 $mail->IsSMTP();
634                 $mail->SMTPAuth   = true;
635                 $mail->Host       = getConfig('SMTP_HOSTNAME');
636                 $mail->Port       = 25;
637                 $mail->Username   = getConfig('SMTP_USER');
638                 $mail->Password   = getConfig('SMTP_PASSWORD');
639                 if (empty($from)) {
640                         $mail->From = getConfig('WEBMASTER');
641                 } else {
642                         $mail->From = $from;
643                 }
644                 $mail->FromName   = getConfig('MAIN_TITLE');
645                 $mail->Subject    = $subject;
646                 if ((isExtensionActive('html_mail')) && (secureString($message) != $message)) {
647                         $mail->Body       = $message;
648                         $mail->AltBody    = 'Your mail program required HTML support to read this mail!';
649                         $mail->WordWrap   = 70;
650                         $mail->IsHTML(true);
651                 } else {
652                         $mail->Body       = decodeEntities($message);
653                 }
654                 $mail->AddAddress($toEmail, '');
655                 $mail->AddReplyTo(getConfig('WEBMASTER'), getConfig('MAIN_TITLE'));
656                 $mail->AddCustomHeader('Errors-To:' . getConfig('WEBMASTER'));
657                 $mail->AddCustomHeader('X-Loop:' . getConfig('WEBMASTER'));
658                 $mail->Send();
659         } else {
660                 // Use legacy mail() command
661                 mail($toEmail, $subject, decodeEntities($message), $from);
662         }
663 }
664
665 // Generate a password in a specified length or use default password length
666 function generatePassword ($length = '0') {
667         // Auto-fix invalid length of zero
668         if ($length == '0') $length = getConfig('pass_len');
669
670         // Initialize array with all allowed chars
671         $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,-,+,_,/,.');
672
673         // Start creating password
674         $PASS = '';
675         for ($i = '0'; $i < $length; $i++) {
676                 $PASS .= $ABC[mt_rand(0, count($ABC) -1)];
677         } // END - for
678
679         // When the size is below 40 we can also add additional security by scrambling
680         // it. Otherwise we may corrupt hashes
681         if (strlen($PASS) <= 40) {
682                 // Also scramble the password
683                 $PASS = scrambleString($PASS);
684         } // END - if
685
686         // Return the password
687         return $PASS;
688 }
689
690 // Generates a human-readable timestamp from the Uni* stamp
691 function generateDateTime ($time, $mode = '0') {
692         // Filter out numbers
693         $time = bigintval($time);
694
695         // If the stamp is zero it mostly didn't "happen"
696         if ($time == '0') {
697                 // Never happend
698                 return getMessage('NEVER_HAPPENED');
699         } // END - if
700
701         switch (getLanguage()) {
702                 case 'de': // German date / time format
703                         switch ($mode) {
704                                 case '0': $ret = date("d.m.Y \u\m H:i \U\h\\r", $time); break;
705                                 case '1': $ret = strtolower(date('d.m.Y - H:i', $time)); break;
706                                 case '2': $ret = date('d.m.Y|H:i', $time); break;
707                                 case '3': $ret = date('d.m.Y', $time); break;
708                                 default:
709                                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("Invalid date mode %s detected.", $mode));
710                                         break;
711                         }
712                         break;
713
714                 default: // Default is the US date / time format!
715                         switch ($mode) {
716                                 case '0': $ret = date('r', $time); break;
717                                 case '1': $ret = date('Y-m-d - g:i A', $time); break;
718                                 case '2': $ret = date('y-m-d|H:i', $time); break;
719                                 case '3': $ret = date('y-m-d', $time); break;
720                                 default:
721                                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("Invalid date mode %s detected.", $mode));
722                                         break;
723                         } // END - switch
724         } // END - switch
725
726         // Return result
727         return $ret;
728 }
729
730 // Translates Y/N to yes/no
731 function translateYesNo ($yn) {
732         // Default
733         $translated = '??? (' . $yn . ')';
734         switch ($yn) {
735                 case 'Y': $translated = getMessage('YES'); break;
736                 case 'N': $translated = getMessage('NO'); break;
737                 default:
738                         // Log unknown value
739                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown value %s. Expected Y/N!", $yn));
740                         break;
741         }
742
743         // Return it
744         return $translated;
745 }
746
747 // Translates the "pool type" into human-readable
748 function translatePoolType ($type) {
749         // Default?type is unknown
750         $translated = sprintf(getMessage('POOL_TYPE_UNKNOWN'), $type);
751
752         // Generate constant
753         $constName = sprintf("POOL_TYPE_%s", $type);
754
755         // Does it exist?
756         if (isMessageIdValid($constName)) {
757                 // Then use it
758                 $translated = getMessage($constName);
759         } // END - if
760
761         // Return "translation"
762         return $translated;
763 }
764
765 // Translates the american decimal dot into a german comma
766 function translateComma ($dotted, $cut = true, $max = '0') {
767         // Default is 3 you can change this in admin area "Misc -> Misc Options"
768         if (!isConfigEntrySet('max_comma')) setConfigEntry('max_comma', 3);
769
770         // Use from config is default
771         $maxComma = getConfig('max_comma');
772
773         // Use from parameter?
774         if ($max > 0) $maxComma = $max;
775
776         // Cut zeros off?
777         if (($cut === true) && ($max == '0')) {
778                 // Test for commata if in cut-mode
779                 $com = explode('.', $dotted);
780                 if (count($com) < 2) {
781                         // Don't display commatas even if there are none... ;-)
782                         $maxComma = '0';
783                 }
784         } // END - if
785
786         // Debug log
787         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "dotted={$dotted},maxComma={$maxComma}");
788
789         // Translate it now
790         switch (getLanguage()) {
791                 case 'de': // German language
792                         $dotted = number_format($dotted, $maxComma, ',', '.');
793                         break;
794
795                 default: // All others
796                         $dotted = number_format($dotted, $maxComma, '.', ',');
797                         break;
798         }
799
800         // Return translated value
801         return $dotted;
802 }
803
804 // Translate Uni*-like gender to human-readable
805 function translateGender ($gender) {
806         // Default
807         $ret = '!' . $gender . '!';
808
809         // Male/female or company?
810         switch ($gender) {
811                 case 'M': $ret = getMessage('GENDER_M'); break;
812                 case 'F': $ret = getMessage('GENDER_F'); break;
813                 case 'C': $ret = getMessage('GENDER_C'); break;
814                 default:
815                         // Log unknown gender
816                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown gender %s detected.", $gender));
817                         break;
818         }
819
820         // Return translated gender
821         return $ret;
822 }
823
824 // "Translates" the user status
825 function translateUserStatus ($status) {
826         // Generate message depending on status
827         switch ($status) {
828                 case 'UNCONFIRMED':
829                 case 'CONFIRMED':
830                 case 'LOCKED':
831                         $ret = getMessage(sprintf("ACCOUNT_%s", $status));
832                         break;
833
834                 case '':
835                 case null:
836                         $ret = getMessage('ACCOUNT_DELETED');
837                         break;
838
839                 default:
840                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown status %s detected.", $status));
841                         $ret = sprintf(getMessage('UNKNOWN_STATUS'), $status);
842                         break;
843         } // END - switch
844
845         // Return it
846         return $ret;
847 }
848
849 // Generates an URL for the dereferer
850 function generateDerefererUrl ($URL) {
851         // Don't de-refer our own links!
852         if (substr($URL, 0, strlen(getConfig('URL'))) != getConfig('URL')) {
853                 // De-refer this link
854                 $URL = '{%url=modules.php?module=loader&amp;url=' . encodeString(compileUriCode($URL)) . '%}';
855         } // END - if
856
857         // Return link
858         return $URL;
859 }
860
861 // Generates an URL for the frametester
862 function generateFrametesterUrl ($URL) {
863         // Prepare frametester URL
864         $frametesterUrl = sprintf("{%%url=modules.php?module=frametester&amp;url=%s%%}",
865                 encodeString(compileUriCode($URL))
866         );
867
868         // Return the new URL
869         return $frametesterUrl;
870 }
871
872 // Count entries from e.g. a selection box
873 function countSelection ($array) {
874         // Integrity check
875         if (!is_array($array)) {
876                 // Not an array!
877                 debug_report_bug(__FUNCTION__.': No array provided.');
878         } // END - if
879
880         // Init count
881         $ret = '0';
882
883         // Count all entries
884         foreach ($array as $key => $selected) {
885                 // Is it checked?
886                 if (!empty($selected)) $ret++;
887         } // END - foreach
888
889         // Return counted selections
890         return $ret;
891 }
892
893 // Generate XHTML code for the CAPTCHA
894 function generateCaptchaCode ($code, $type, $DATA, $userid) {
895         return '<img border="0" alt="Code ' . $code . '" src="{%url=mailid_top.php?userid=' . $userid . '&amp;' . $type . '=' . $DATA . '&amp;mode=img&amp;code=' . $code . '%}" />';
896 }
897
898 // Generates a timestamp (some wrapper for mktime())
899 function makeTime ($hours, $minutes, $seconds, $stamp) {
900         // Extract day, month and year from given timestamp
901         $days   = date('d', $stamp);
902         $months = date('m', $stamp);
903         $years  = date('Y', $stamp);
904
905         // Create timestamp for wished time which depends on extracted date
906         return mktime(
907                 $hours,
908                 $minutes,
909                 $seconds,
910                 $months,
911                 $days,
912                 $years
913         );
914 }
915
916 // Redirects to an URL and if neccessarry extends it with own base URL
917 function redirectToUrl ($URL) {
918         // Compile out codes
919         eval('$URL = "' . compileRawCode(encodeUrl($URL)) . '";');
920
921         // Default 'rel' value is external, nofollow is evil from Google and hurts the Internet
922         $rel = ' rel="external"';
923
924         // Do we have internal or external URL?
925         if (substr($URL, 0, strlen(getConfig('URL'))) == getConfig('URL')) {
926                 // Own (=internal) URL
927                 $rel = '';
928         } // END - if
929
930         // Three different ways to debug...
931         //* DEBUG: */ debug_report_bug(sprintf("%s[%s:] URL=%s", __FUNCTION__, __LINE__, $URL));
932         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'URL=' . $URL);
933         //* DEBUG: */ die($URL);
934
935         // Simple probe for bots/spiders from search engines
936         if (isSpider()) {
937                 // Secure the URL against bad things such als HTML insertions and so on...
938                 $URL = secureString($URL);
939
940                 // Output new location link as anchor
941                 outputHtml('<a href="' . $URL . '"' . $rel . '>' . $URL . '</a>');
942         } elseif (!headers_sent()) {
943                 // Clear own output buffer
944                 $GLOBALS['output'] = '';
945
946                 // Load URL when headers are not sent
947                 sendHeader('Location: '.str_replace('&amp;', '&', $URL));
948         } else {
949                 // Output error message
950                 loadInclude('inc/header.php');
951                 loadTemplate('redirect_url', false, str_replace('&amp;', '&', $URL));
952                 loadInclude('inc/footer.php');
953         }
954
955         // Shut the mailer down here
956         shutdown();
957 }
958
959 // Wrapper for redirectToUrl but URL comes from a configuration entry
960 function redirectToConfiguredUrl ($configEntry) {
961         // Get the URL
962         $URL = getConfig($configEntry);
963
964         // Is this URL set?
965         if (is_null($URL)) {
966                 // Then abort here
967                 debug_report_bug(sprintf("Configuration entry %s is not set!", $configEntry));
968         } // END - if
969
970         // Load the URL
971         redirectToUrl($URL);
972 }
973
974 // Compiles the given HTML/mail code
975 function compileCode ($code, $simple = false, $constants = true, $full = true) {
976         // Is the code a string?
977         if (!is_string($code)) {
978                 // Silently return it
979                 return $code;
980         } // END - if
981
982         // Start couting
983         $startCompile = microtime(true);
984
985         // Comile the code
986         $code = compileRawCode($code, $simple, $constants, $full);
987
988         // Get timing
989         $compiled = microtime(true);
990
991         // Add timing
992         $code .= '<!-- Compilation time: ' . (($compiled - $startCompile) * 1000). 'ms //-->';
993
994         // Return compiled code
995         return $code;
996 }
997
998 // Compiles the code (use compileCode() only for HTML because of the comments)
999 // @TODO $simple is deprecated
1000 function compileRawCode ($code, $simple = false, $constants = true, $full = true) {
1001         // Is the code a string?
1002         if (!is_string($code)) {
1003                 // Silently return it
1004                 return $code;
1005         } // END - if
1006
1007         // Init replacement-array with smaller set of security characters
1008         $secChars = $GLOBALS['url_chars'];
1009
1010         // Select full set of chars to replace when we e.g. want to compile URLs
1011         if ($full === true) $secChars = $GLOBALS['security_chars'];
1012
1013         // Compile more through a filter
1014         $code = runFilterChain('compile_code', $code);
1015
1016         // Compile constants
1017         if ($constants === true) {
1018                 // BEFORE 0.2.1 : Language and data constants
1019                 // WITH 0.2.1+  : Only language constants
1020                 $code = str_replace('{--', "\" . getMessage('", str_replace('--}', "') . \"", $code));
1021
1022                 // BEFORE 0.2.1 : Not used
1023                 // WITH 0.2.1+  : Data constants
1024                 $code = str_replace('{!', "\" . constant('", str_replace('!}', "') . \"", $code));
1025         } // END - if
1026
1027         // Compile QUOT and other non-HTML codes
1028         foreach ($secChars['to'] as $k => $to) {
1029                 // Do the reversed thing as in inc/libs/security_functions.php
1030                 $code = str_replace($to, $secChars['from'][$k], $code);
1031         } // END - foreach
1032
1033         // Find $content[bla][blub] entries
1034         // @TODO Do only use $content and deprecate $GLOBALS and $DATA in templates
1035         preg_match_all('/\$(content|GLOBALS|DATA)((\[([a-zA-Z0-9-_]+)\])*)/', $code, $matches);
1036
1037         // Are some matches found?
1038         if ((count($matches) > 0) && (count($matches[0]) > 0)) {
1039                 // Replace all matches
1040                 $matchesFound = array();
1041                 foreach ($matches[0] as $key => $match) {
1042                         // Fuzzy look has failed by default
1043                         $fuzzyFound = false;
1044
1045                         // Fuzzy look on match if already found
1046                         foreach ($matchesFound as $found => $set) {
1047                                 // Get test part
1048                                 $test = substr($found, 0, strlen($match));
1049
1050                                 // Does this entry exist?
1051                                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):found={$found},match={$match},set={$set}<br />");
1052                                 if ($test == $match) {
1053                                         // Match found!
1054                                         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):fuzzyFound!<br />");
1055                                         $fuzzyFound = true;
1056                                         break;
1057                                 } // END - if
1058                         } // END - foreach
1059
1060                         // Skip this entry?
1061                         if ($fuzzyFound === true) continue;
1062
1063                         // Take all string elements
1064                         if ((is_string($matches[4][$key])) && (!isset($matchesFound[$match])) && (!isset($matchesFound[$key."_" . $matches[4][$key]]))) {
1065                                 // Replace it in the code
1066                                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):key={$key},match={$match}<br />");
1067                                 $newMatch = str_replace('[', "['", str_replace(']', "']", $match));
1068                                 $code = str_replace($match, '".' . $newMatch . '."', $code);
1069                                 $matchesFound[$key . '_' . $matches[4][$key]] = 1;
1070                                 $matchesFound[$match] = 1;
1071                         } elseif (!isset($matchesFound[$match])) {
1072                                 // Not yet replaced!
1073                                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):match={$match}<br />");
1074                                 $code = str_replace($match, '".' . $match . '."', $code);
1075                                 $matchesFound[$match] = 1;
1076                         }
1077                 } // END - foreach
1078         } // END - if
1079
1080         // Return it
1081         return $code;
1082 }
1083
1084 /************************************************************************
1085  *                                                                      *
1086  * Gaenderter Sortier-Algorythmus, $array wird nach dem Array (!)       *
1087  * $a_sort sortiert:                                                    *
1088  *                                                                      *
1089  * $array - Das 3-dimensionale Array, das paralell sortiert werden soll *
1090  * $a_sort - Array, das die Sortiereihenfolge der ersten Elementeben    *
1091  * $primary_key - Prim.rschl.ssel aus $a_sort, nach dem sortiert wird   *
1092  * $order - Sortiereihenfolge: -1 = a-Z, 0 = keine, 1 = Z-a             *
1093  * $nums - true = Als Zahlen sortieren, false = Als Zeichen sortieren   *
1094  *                                                                      *
1095  * $a_sort muss Elemente enthalten, deren Wert Schluessel von $array    *
1096  * sind... Klingt kompliziert, suchen Sie mal mein Beispiel, dann sehen *
1097  * Sie, dass es doch nicht so schwer ist! :-)                           *
1098  *                                                                      *
1099  ************************************************************************/
1100 function array_pk_sort (&$array, $a_sort, $primary_key = '0', $order = -1, $nums = false) {
1101         $dummy = $array;
1102         while ($primary_key < count($a_sort)) {
1103                 foreach ($dummy[$a_sort[$primary_key]] as $key => $value) {
1104                         foreach ($dummy[$a_sort[$primary_key]] as $key2 => $value2) {
1105                                 $match = false;
1106                                 if ($nums === false) {
1107                                         // Sort byte-by-byte (also numbers will be interpreted as chars! E.g.: "9" > "10")
1108                                         if (($key != $key2) && (strcmp(strtolower($dummy[$a_sort[$primary_key]][$key]), strtolower($dummy[$a_sort[$primary_key]][$key2])) == $order)) $match = true;
1109                                 } elseif ($key != $key2) {
1110                                         // Sort numbers (E.g.: 9 < 10)
1111                                         if (($dummy[$a_sort[$primary_key]][$key] < $dummy[$a_sort[$primary_key]][$key2]) && ($order == -1)) $match = true;
1112                                         if (($dummy[$a_sort[$primary_key]][$key] > $dummy[$a_sort[$primary_key]][$key2]) && ($order == 1))  $match = true;
1113                                 }
1114
1115                                 if ($match) {
1116                                         // We have found two different values, so let's sort whole array
1117                                         foreach ($dummy as $sort_key => $sort_val) {
1118                                                 $t                       = $dummy[$sort_key][$key];
1119                                                 $dummy[$sort_key][$key]  = $dummy[$sort_key][$key2];
1120                                                 $dummy[$sort_key][$key2] = $t;
1121                                                 unset($t);
1122                                         } // END - foreach
1123                                 } // END - if
1124                         } // END - foreach
1125                 } // END - foreach
1126
1127                 // Count one up
1128                 $primary_key++;
1129         } // END - while
1130
1131         // Write back sorted array
1132         $array = $dummy;
1133 }
1134
1135 //
1136 function addSelectionBox ($type, $default, $prefix = '', $id = '0', $class = 'register_select') {
1137         $OUT = '';
1138
1139         if ($type == 'yn') {
1140                 // This is a yes/no selection only!
1141                 if ($id > 0) $prefix .= "[" . $id."]";
1142                 $OUT .= "    <select name=\"" . $prefix."\" class=\"" . $class . "\" size=\"1\">\n";
1143         } else {
1144                 // Begin with regular selection box here
1145                 if (!empty($prefix)) $prefix .= "_";
1146                 $type2 = $type;
1147                 if ($id > 0) $type2 .= "[" . $id."]";
1148                 $OUT .= "    <select name=\"".strtolower($prefix . $type2)."\" class=\"" . $class . "\" size=\"1\">\n";
1149         }
1150
1151         switch ($type) {
1152                 case 'day': // Day
1153                         for ($idx = 1; $idx < 32; $idx++) {
1154                                 $OUT .= "<option value=\"" . $idx."\"";
1155                                 if ($default == $idx) $OUT .= ' selected="selected"';
1156                                 $OUT .= ">" . $idx."</option>\n";
1157                         } // END - for
1158                         break;
1159
1160                 case 'month': // Month
1161                         foreach ($GLOBALS['month_descr'] as $month => $descr) {
1162                                 $OUT .= "<option value=\"" . $month."\"";
1163                                 if ($default == $month) $OUT .= ' selected="selected"';
1164                                 $OUT .= ">" . $descr."</option>\n";
1165                         } // END - for
1166                         break;
1167
1168                 case 'year': // Year
1169                         // Get current year
1170                         $year = date('Y', time());
1171
1172                         // Use configured min age or fixed?
1173                         if ((isExtensionActive('other')) && (getExtensionVersion('other') >= '0.2.1')) {
1174                                 // Configured
1175                                 $startYear = $year - getConfig('min_age');
1176                         } else {
1177                                 // Fixed 16 years
1178                                 $startYear = $year - 16;
1179                         }
1180
1181                         // Calculate earliest year (100 years old people can still enter Internet???)
1182                         $minYear = $year - 100;
1183
1184                         // Check if the default value is larger than minimum and bigger than actual year
1185                         if (($default > $minYear) && ($default >= $year)) {
1186                                 for ($idx = $year; $idx < ($year + 11); $idx++) {
1187                                         $OUT .= "<option value=\"" . $idx."\"";
1188                                         if ($default == $idx) $OUT .= ' selected="selected"';
1189                                         $OUT .= ">" . $idx."</option>\n";
1190                                 } // END - for
1191                         } elseif ($default == -1) {
1192                                 // Current year minus 1
1193                                 for ($idx = $startYear; $idx <= ($year + 1); $idx++)
1194                                 {
1195                                         $OUT .= "<option value=\"" . $idx."\">" . $idx."</option>\n";
1196                                 }
1197                         } else {
1198                                 // Get current year and subtract the configured minimum age
1199                                 $OUT .= "<option value=\"".($minYear - 1)."\">&lt;" . $minYear."</option>\n";
1200                                 // Calculate earliest year depending on extension version
1201                                 if ((isExtensionActive('other')) && (getExtensionVersion('other') >= '0.2.1')) {
1202                                         // Use configured minimum age
1203                                         $year = date('Y', time()) - getConfig('min_age');
1204                                 } else {
1205                                         // Use fixed 16 years age
1206                                         $year = date('Y', time()) - 16;
1207                                 }
1208
1209                                 // Construct year selection list
1210                                 for ($idx = $minYear; $idx <= $year; $idx++) {
1211                                         $OUT .= "<option value=\"" . $idx."\"";
1212                                         if ($default == $idx) $OUT .= ' selected="selected"';
1213                                         $OUT .= ">" . $idx."</option>\n";
1214                                 } // END - for
1215                         }
1216                         break;
1217
1218                 case 'sec':
1219                 case 'min':
1220                         for ($idx = '0'; $idx < 60; $idx+=5) {
1221                                 if (strlen($idx) == 1) $idx = '0' . $idx;
1222                                 $OUT .= "<option value=\"" . $idx."\"";
1223                                 if ($default == $idx) $OUT .= ' selected="selected"';
1224                                 $OUT .= ">" . $idx."</option>\n";
1225                         } // END - for
1226                         break;
1227
1228                 case 'hour':
1229                         for ($idx = '0'; $idx < 24; $idx++) {
1230                                 if (strlen($idx) == 1) $idx = '0' . $idx;
1231                                 $OUT .= "<option value=\"" . $idx."\"";
1232                                 if ($default == $idx) $OUT .= ' selected="selected"';
1233                                 $OUT .= ">" . $idx."</option>\n";
1234                         } // END - for
1235                         break;
1236
1237                 case 'yn':
1238                         $OUT .= "<option value=\"Y\"";
1239                         if ($default == 'Y') $OUT .= ' selected="selected"';
1240                         $OUT .= ">{--YES--}</option>\n<option value=\"N\"";
1241                         if ($default != 'Y') $OUT .= ' selected="selected"';
1242                         $OUT .= ">{--NO--}</option>\n";
1243                         break;
1244         }
1245         $OUT .= "    </select>\n";
1246         return $OUT;
1247 }
1248
1249 //
1250 // Deprecated : $length
1251 // Optional   : $DATA
1252 //
1253 function generateRandomCode ($length, $code, $userid, $DATA = '') {
1254         // Build server string
1255         $server = $_SERVER['PHP_SELF'] . getConfig('ENCRYPT_SEPERATOR') . detectUserAgent() . getConfig('ENCRYPT_SEPERATOR') . getenv('SERVER_SOFTWARE') . getConfig('ENCRYPT_SEPERATOR') . detectRemoteAddr().":'.':".filemtime(getConfig('PATH').'inc/databases.php');
1256
1257         // Build key string
1258         $keys = getConfig('SITE_KEY') . getConfig('ENCRYPT_SEPERATOR') . getConfig('DATE_KEY');
1259         if (isConfigEntrySet('secret_key'))  $keys .= getConfig('ENCRYPT_SEPERATOR').getConfig('secret_key');
1260         if (isConfigEntrySet('file_hash'))   $keys .= getConfig('ENCRYPT_SEPERATOR').getConfig('file_hash');
1261         $keys .= getConfig('ENCRYPT_SEPERATOR') . date('d-m-Y (l-F-T)', getConfig('patch_ctime'));
1262         if (isConfigEntrySet('master_salt')) $keys .= getConfig('ENCRYPT_SEPERATOR').getConfig('master_salt');
1263
1264         // Build string from misc data
1265         $data   = $code . getConfig('ENCRYPT_SEPERATOR') . $userid . getConfig('ENCRYPT_SEPERATOR') . $DATA;
1266
1267         // Add more additional data
1268         if (isSessionVariableSet('u_hash'))         $data .= getConfig('ENCRYPT_SEPERATOR') . getSession('u_hash');
1269
1270         // Add referal id, language, theme and userid
1271         $data .= getConfig('ENCRYPT_SEPERATOR') . determineReferalId();
1272         $data .= getConfig('ENCRYPT_SEPERATOR') . getLanguage();
1273         $data .= getConfig('ENCRYPT_SEPERATOR') . getCurrentTheme();
1274         $data .= getConfig('ENCRYPT_SEPERATOR') . getMemberId();
1275
1276         // Calculate number for generating the code
1277         $a = $code + getConfig('_ADD') - 1;
1278
1279         if (isConfigEntrySet('master_salt')) {
1280                 // Generate hash with master salt from modula of number with the prime number and other data
1281                 $saltedHash = generateHash(($a % getConfig('_PRIME')) . getConfig('ENCRYPT_SEPERATOR') . $server . getConfig('ENCRYPT_SEPERATOR') . $keys . getConfig('ENCRYPT_SEPERATOR') . $data . getConfig('ENCRYPT_SEPERATOR') . getConfig('DATE_KEY') . getConfig('ENCRYPT_SEPERATOR') . $a, getConfig('master_salt'));
1282
1283                 // Create number from hash
1284                 $rcode = hexdec(substr($saltedHash, strlen(getConfig('master_salt')), 9)) / abs(getConfig('rand_no') - $a + sqrt(getConfig('_ADD'))) / pi();
1285         } else {
1286                 // Generate hash with "hash of site key" from modula of number with the prime number and other data
1287                 $saltedHash = generateHash(($a % getConfig('_PRIME')) . getConfig('ENCRYPT_SEPERATOR') . $server . getConfig('ENCRYPT_SEPERATOR') . $keys . getConfig('ENCRYPT_SEPERATOR') . $data . getConfig('ENCRYPT_SEPERATOR') . getConfig('DATE_KEY') . getConfig('ENCRYPT_SEPERATOR') . $a, substr(sha1(getConfig('SITE_KEY')), 0, getConfig('salt_length')));
1288
1289                 // Create number from hash
1290                 $rcode = hexdec(substr($saltedHash, 8, 9)) / abs(getConfig('rand_no') - $a + sqrt(getConfig('_ADD'))) / pi();
1291         }
1292
1293         // At least 10 numbers shall be secure enought!
1294         $len = getConfig('code_length');
1295         if ($len == '0') $len = $length;
1296         if ($len == '0') $len = 10;
1297
1298         // Cut off requested counts of number
1299         $return = substr(str_replace('.', '', $rcode), 0, $len);
1300
1301         // Done building code
1302         return $return;
1303 }
1304
1305 // Does only allow numbers
1306 function bigintval ($num, $castValue = true) {
1307         // Filter all numbers out
1308         $ret = preg_replace('/[^0123456789]/', '', $num);
1309
1310         // Shall we cast?
1311         if ($castValue === true) $ret = (double)$ret;
1312
1313         // Has the whole value changed?
1314         if ('' . $ret . '' != '' . $num . '') {
1315                 // Log the values
1316                 debug_report_bug('Problem with number found. ret=' . $ret . ', num='. $num);
1317         } // END - if
1318
1319         // Return result
1320         return $ret;
1321 }
1322
1323 // Insert the code in $img_code into jpeg or PNG image
1324 function generateImageOrCode ($img_code, $headerSent = true) {
1325         // Is the code size oversized or shouldn't we display it?
1326         if ((strlen($img_code) > 6) || (empty($img_code)) || (getConfig('code_length') == '0')) {
1327                 // Stop execution of function here because of over-sized code length
1328                 debug_report_bug('img_code ' . $img_code .' has invalid length. img_code()=' . strlen($img_code) . ' code_length=' . getConfig('code_length'));
1329         } elseif ($headerSent === false) {
1330                 // Return an HTML code here
1331                 return "<img src=\"{%url=img.php?code=" . $img_code."%}\" alt=\"Image\" />\n";
1332         }
1333
1334         // Load image
1335         $img = sprintf("%s/theme/%s/images/code_bg.%s",
1336                 getConfig('PATH'),
1337                 getCurrentTheme(),
1338                 getConfig('img_type')
1339         );
1340
1341         // Is it readable?
1342         if (isFileReadable($img)) {
1343                 // Switch image type
1344                 switch (getConfig('img_type'))
1345                 {
1346                         case 'jpg':
1347                                 // Okay, load image and hide all errors
1348                                 $image = imagecreatefromjpeg($img);
1349                                 break;
1350
1351                         case 'png':
1352                                 // Okay, load image and hide all errors
1353                                 $image = imagecreatefrompng($img);
1354                                 break;
1355                 }
1356         } else {
1357                 // Exit function here
1358                 logDebugMessage(__FUNCTION__, __LINE__, sprintf("File for image type %s not found.", getConfig('img_type')));
1359                 return;
1360         }
1361
1362         // Generate text color (red/green/blue; 0 = dark, 255 = bright)
1363         $text_color = imagecolorallocate($image, 0, 0, 0);
1364
1365         // Insert code into image
1366         imagestring($image, 5, 14, 2, $img_code, $text_color);
1367
1368         // Return to browser
1369         sendHeader('Content-Type: image/' . getConfig('img_type'));
1370
1371         // Output image with matching image factory
1372         switch (getConfig('img_type')) {
1373                 case 'jpg': imagejpeg($image); break;
1374                 case 'png': imagepng($image);  break;
1375         }
1376
1377         // Remove image from memory
1378         imagedestroy($image);
1379 }
1380 // Create selection box or array of splitted timestamp
1381 function createTimeSelections ($timestamp, $prefix = '', $display = '', $align = 'center', $return_array=false) {
1382         // Calculate 2-seconds timestamp
1383         $stamp = round($timestamp);
1384         //* DEBUG: */ print("*" . $stamp.'/' . $timestamp."*<br />");
1385
1386         // Do we have a leap year?
1387         $SWITCH = '0';
1388         $TEST = date('Y', time()) / 4;
1389         $M1 = date('m', time());
1390         $M2 = date('m', (time() + $timestamp));
1391
1392         // If so and if current time is before 02/29 and estimated time is after 02/29 then add 86400 seconds (one day)
1393         if ((floor($TEST) == $TEST) && ($M1 == "02") && ($M2 > "02"))  $SWITCH = getConfig('ONE_DAY');
1394
1395         // First of all years...
1396         $Y = abs(floor($timestamp / (31536000 + $SWITCH)));
1397         //* DEBUG: */ print("Y={$Y}<br />");
1398         // Next months...
1399         $M = abs(floor($timestamp / 2628000 - $Y * 12));
1400         //* DEBUG: */ print("M={$M}<br />");
1401         // Next weeks
1402         $W = abs(floor($timestamp / 604800 - $Y * ((365 + $SWITCH / getConfig('ONE_DAY')) / 7) - ($M / 12 * (365 + $SWITCH / getConfig('ONE_DAY')) / 7)));
1403         //* DEBUG: */ print("W={$W}<br />");
1404         // Next days...
1405         $D = abs(floor($timestamp / 86400 - $Y * (365 + $SWITCH / getConfig('ONE_DAY')) - ($M / 12 * (365 + $SWITCH / getConfig('ONE_DAY'))) - $W * 7));
1406         //* DEBUG: */ print("D={$D}<br />");
1407         // Next hours...
1408         $h = abs(floor($timestamp / 3600 - $Y * (365 + $SWITCH / getConfig('ONE_DAY')) * 24 - ($M / 12 * (365 + $SWITCH / getConfig('ONE_DAY')) * 24) - $W * 7 * 24 - $D * 24));
1409         //* DEBUG: */ print("h={$h}<br />");
1410         // Next minutes..
1411         $m = abs(floor($timestamp / 60 - $Y * (365 + $SWITCH / getConfig('ONE_DAY')) * 24 * 60 - ($M / 12 * (365 + $SWITCH / getConfig('ONE_DAY')) * 24 * 60) - $W * 7 * 24 * 60 - $D * 24 * 60 - $h * 60));
1412         //* DEBUG: */ print("m={$m}<br />");
1413         // And at last seconds...
1414         $s = abs(floor($timestamp - $Y * (365 + $SWITCH / getConfig('ONE_DAY')) * 24 * 3600 - ($M / 12 * (365 + $SWITCH / getConfig('ONE_DAY')) * 24 * 3600) - $W * 7 * 24 * 3600 - $D * 24 * 3600 - $h * 3600 - $m * 60));
1415         //* DEBUG: */ print("s={$s}<br />");
1416
1417         // Is seconds zero and time is < 60 seconds?
1418         if (($s == '0') && ($timestamp < 60)) {
1419                 // Fix seconds
1420                 $s = round($timestamp);
1421         } // END - if
1422
1423         //
1424         // Now we convert them in seconds...
1425         //
1426         if ($return_array) {
1427                 // Just put all data in an array for later use
1428                 $OUT = array(
1429                         'YEARS'   => $Y,
1430                         'MONTHS'  => $M,
1431                         'WEEKS'   => $W,
1432                         'DAYS'    => $D,
1433                         'HOURS'   => $h,
1434                         'MINUTES' => $m,
1435                         'SECONDS' => $s
1436                 );
1437         } else {
1438                 // Generate table
1439                 $OUT  = "<div align=\"" . $align."\">\n";
1440                 $OUT .= "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" class=\"timebox_table dashed\">\n";
1441                 $OUT .= "<tr>\n";
1442
1443                 if (ereg('Y', $display) || (empty($display))) {
1444                         $OUT .= "  <td align=\"center\" class=\"timebox_column bottom\"><div class=\"tiny\">{--_YEARS--}</strong></td>\n";
1445                 }
1446
1447                 if (ereg('M', $display) || (empty($display))) {
1448                         $OUT .= "  <td align=\"center\" class=\"timebox_column bottom\"><div class=\"tiny\">{--_MONTHS--}</strong></td>\n";
1449                 }
1450
1451                 if (ereg('W', $display) || (empty($display))) {
1452                         $OUT .= "  <td align=\"center\" class=\"timebox_column bottom\"><div class=\"tiny\">{--_WEEKS--}</strong></td>\n";
1453                 }
1454
1455                 if (ereg('D', $display) || (empty($display))) {
1456                         $OUT .= "  <td align=\"center\" class=\"timebox_column bottom\"><div class=\"tiny\">{--_DAYS--}</strong></td>\n";
1457                 }
1458
1459                 if (ereg('h', $display) || (empty($display))) {
1460                         $OUT .= "  <td align=\"center\" class=\"timebox_column bottom\"><div class=\"tiny\">{--_HOURS--}</strong></td>\n";
1461                 }
1462
1463                 if (ereg('m', $display) || (empty($display))) {
1464                         $OUT .= "  <td align=\"center\" class=\"timebox_column bottom\"><div class=\"tiny\">{--_MINUTES--}</strong></td>\n";
1465                 }
1466
1467                 if (ereg('s', $display) || (empty($display))) {
1468                         $OUT .= "  <td align=\"center\" class=\"timebox_column bottom\"><div class=\"tiny\">{--_SECONDS--}</strong></td>\n";
1469                 }
1470
1471                 $OUT .= "</tr>\n";
1472                 $OUT .= "<tr>\n";
1473
1474                 if (ereg('Y', $display) || (empty($display))) {
1475                         // Generate year selection
1476                         $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"" . $prefix."_ye\" size=\"1\">\n";
1477                         for ($idx = '0'; $idx <= 10; $idx++) {
1478                                 $OUT .= "    <option class=\"mini_select\" value=\"" . $idx."\"";
1479                                 if ($idx == $Y) $OUT .= ' selected="selected"';
1480                                 $OUT .= ">" . $idx."</option>\n";
1481                         }
1482                         $OUT .= "  </select></td>\n";
1483                 } else {
1484                         $OUT .= "<input type=\"hidden\" name=\"" . $prefix."_ye\" value=\"0\" />\n";
1485                 }
1486
1487                 if (ereg('M', $display) || (empty($display))) {
1488                         // Generate month selection
1489                         $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"" . $prefix."_mo\" size=\"1\">\n";
1490                         for ($idx = '0'; $idx <= 11; $idx++)
1491                         {
1492                                 $OUT .= "  <option class=\"mini_select\" value=\"" . $idx."\"";
1493                                 if ($idx == $M) $OUT .= ' selected="selected"';
1494                                 $OUT .= ">" . $idx."</option>\n";
1495                         }
1496                         $OUT .= "  </select></td>\n";
1497                 } else {
1498                         $OUT .= "<input type=\"hidden\" name=\"" . $prefix."_mo\" value=\"0\" />\n";
1499                 }
1500
1501                 if (ereg('W', $display) || (empty($display))) {
1502                         // Generate week selection
1503                         $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"" . $prefix."_we\" size=\"1\">\n";
1504                         for ($idx = '0'; $idx <= 4; $idx++) {
1505                                 $OUT .= "  <option class=\"mini_select\" value=\"" . $idx."\"";
1506                                 if ($idx == $W) $OUT .= ' selected="selected"';
1507                                 $OUT .= ">" . $idx."</option>\n";
1508                         }
1509                         $OUT .= "  </select></td>\n";
1510                 } else {
1511                         $OUT .= "<input type=\"hidden\" name=\"" . $prefix."_we\" value=\"0\" />\n";
1512                 }
1513
1514                 if (ereg('D', $display) || (empty($display))) {
1515                         // Generate day selection
1516                         $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"" . $prefix."_da\" size=\"1\">\n";
1517                         for ($idx = '0'; $idx <= 31; $idx++) {
1518                                 $OUT .= "  <option class=\"mini_select\" value=\"" . $idx."\"";
1519                                 if ($idx == $D) $OUT .= ' selected="selected"';
1520                                 $OUT .= ">" . $idx."</option>\n";
1521                         }
1522                         $OUT .= "  </select></td>\n";
1523                 } else {
1524                         $OUT .= "<input type=\"hidden\" name=\"" . $prefix."_da\" value=\"0\" />\n";
1525                 }
1526
1527                 if (ereg('h', $display) || (empty($display))) {
1528                         // Generate hour selection
1529                         $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"" . $prefix."_ho\" size=\"1\">\n";
1530                         for ($idx = '0'; $idx <= 23; $idx++)    {
1531                                 $OUT .= "  <option class=\"mini_select\" value=\"" . $idx."\"";
1532                                 if ($idx == $h) $OUT .= ' selected="selected"';
1533                                 $OUT .= ">" . $idx."</option>\n";
1534                         }
1535                         $OUT .= "  </select></td>\n";
1536                 } else {
1537                         $OUT .= "<input type=\"hidden\" name=\"" . $prefix."_ho\" value=\"0\" />\n";
1538                 }
1539
1540                 if (ereg('m', $display) || (empty($display))) {
1541                         // Generate minute selection
1542                         $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"" . $prefix."_mi\" size=\"1\">\n";
1543                         for ($idx = '0'; $idx <= 59; $idx++) {
1544                                 $OUT .= "  <option class=\"mini_select\" value=\"" . $idx."\"";
1545                                 if ($idx == $m) $OUT .= ' selected="selected"';
1546                                 $OUT .= ">" . $idx."</option>\n";
1547                         }
1548                         $OUT .= "  </select></td>\n";
1549                 } else {
1550                         $OUT .= "<input type=\"hidden\" name=\"" . $prefix."_mi\" value=\"0\" />\n";
1551                 }
1552
1553                 if (ereg('s', $display) || (empty($display))) {
1554                         // Generate second selection
1555                         $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"" . $prefix."_se\" size=\"1\">\n";
1556                         for ($idx = '0'; $idx <= 59; $idx++) {
1557                                 $OUT .= "  <option class=\"mini_select\" value=\"" . $idx."\"";
1558                                 if ($idx == $s) $OUT .= ' selected="selected"';
1559                                 $OUT .= ">" . $idx."</option>\n";
1560                         }
1561                         $OUT .= "  </select></td>\n";
1562                 } else {
1563                         $OUT .= "<input type=\"hidden\" name=\"" . $prefix."_se\" value=\"0\" />\n";
1564                 }
1565                 $OUT .= "</tr>\n";
1566                 $OUT .= "</table>\n";
1567                 $OUT .= "</div>\n";
1568                 // Return generated HTML code
1569         }
1570         return $OUT;
1571 }
1572
1573 //
1574 function createTimestampFromSelections ($prefix, $postData) {
1575         // Initial return value
1576         $ret = '0';
1577
1578         // Do we have a leap year?
1579         $SWITCH = '0';
1580         $TEST = date('Y', time()) / 4;
1581         $M1   = date('m', time());
1582         // If so and if current time is before 02/29 and estimated time is after 02/29 then add 86400 seconds (one day)
1583         if ((floor($TEST) == $TEST) && ($M1 == "02") && ($postData[$prefix."_mo"] > "02"))  $SWITCH = getConfig('ONE_DAY');
1584         // First add years...
1585         $ret += $postData[$prefix."_ye"] * (31536000 + $SWITCH);
1586         // Next months...
1587         $ret += $postData[$prefix."_mo"] * 2628000;
1588         // Next weeks
1589         $ret += $postData[$prefix."_we"] * 604800;
1590         // Next days...
1591         $ret += $postData[$prefix."_da"] * 86400;
1592         // Next hours...
1593         $ret += $postData[$prefix."_ho"] * 3600;
1594         // Next minutes..
1595         $ret += $postData[$prefix."_mi"] * 60;
1596         // And at last seconds...
1597         $ret += $postData[$prefix."_se"];
1598         // Return calculated value
1599         return $ret;
1600 }
1601
1602 // Creates a 'fancy' human-readable timestamp from a Uni* stamp
1603 function createFancyTime ($stamp) {
1604         // Get data array with years/months/weeks/days/...
1605         $data = createTimeSelections($stamp, '', '', '', true);
1606         $ret = '';
1607         foreach($data as $k => $v) {
1608                 if ($v > 0) {
1609                         // Value is greater than 0 "eval" data to return string
1610                         eval("\$ret .= \", \".\$v.\" {--_".strtoupper($k)."--}\";");
1611                         break;
1612                 } // END - if
1613         } // END - foreach
1614
1615         // Do we have something there?
1616         if (strlen($ret) > 0) {
1617                 // Remove leading commata and space
1618                 $ret = substr($ret, 2);
1619         } else {
1620                 // Zero seconds
1621                 $ret = "0 {--_SECONDS--}";
1622         }
1623
1624         // Return fancy time string
1625         return $ret;
1626 }
1627
1628 // Generates a navigation row for listing emails
1629 function addEmailNavigation ($PAGES, $offset, $show_form, $colspan, $return=false) {
1630         $SEP = ''; $TOP = '';
1631         if ($show_form === false) {
1632                 $TOP = " top";
1633                 $SEP = "<tr><td colspan=\"" . $colspan."\" class=\"seperator\">&nbsp;</td></tr>";
1634         }
1635
1636         $NAV = '';
1637         for ($page = 1; $page <= $PAGES; $page++) {
1638                 // Is the page currently selected or shall we generate a link to it?
1639                 if (($page == getRequestElement('page')) || ((!isGetRequestElementSet('page')) && ($page == 1))) {
1640                         // Is currently selected, so only highlight it
1641                         $NAV .= '<strong>-';
1642                 } else {
1643                         // Open anchor tag and add base URL
1644                         $NAV .= '<a href="{%url=modules.php?module=admin&amp;what=' . getWhat() . '&amp;page=' . $page . '&amp;offset=' . $offset;
1645
1646                         // Add userid when we shall show all mails from a single member
1647                         if ((isGetRequestElementSet('userid')) && (bigintval(getRequestElement('userid')) > 0)) $NAV .= '&amp;userid=' . bigintval(getRequestElement('userid'));
1648
1649                         // Close open anchor tag
1650                         $NAV .= '%}">';
1651                 }
1652                 $NAV .= $page;
1653                 if (($page == getRequestElement('page')) || ((!isGetRequestElementSet('page')) && ($page == 1))) {
1654                         // Is currently selected, so only highlight it
1655                         $NAV .= '-</strong>';
1656                 } else {
1657                         // Close anchor tag
1658                         $NAV .= '</a>';
1659                 }
1660
1661                 // Add seperator if we have not yet reached total pages
1662                 if ($page < $PAGES) $NAV .= '&nbsp;|&nbsp;';
1663         } // END - for
1664
1665         // Define constants only once
1666         $content['nav']  = $NAV;
1667         $content['span'] = $colspan;
1668         $content['top']  = $TOP;
1669         $content['sep']  = $SEP;
1670
1671         // Load navigation template
1672         $OUT = loadTemplate('admin_email_nav_row', true, $content);
1673
1674         if ($return === true) {
1675                 // Return generated HTML-Code
1676                 return $OUT;
1677         } else {
1678                 // Output HTML-Code
1679                 outputHtml($OUT);
1680         }
1681 }
1682
1683 // Extract host from script name
1684 function extractHostnameFromUrl (&$script) {
1685         // Use default SERVER_URL by default... ;) So?
1686         $url = getConfig('SERVER_URL');
1687
1688         // Is this URL valid?
1689         if (substr($script, 0, 7) == 'http://') {
1690                 // Use the hostname from script URL as new hostname
1691                 $url = substr($script, 7);
1692                 $extract = explode('/', $url);
1693                 $url = $extract[0];
1694                 // Done extracting the URL :)
1695         } // END - if
1696
1697         // Extract host name
1698         $host = str_replace('http://', '', $url);
1699         if (ereg('/', $host)) $host = substr($host, 0, strpos($host, '/'));
1700
1701         // Generate relative URL
1702         //* DEBUG: */ print("SCRIPT=" . $script.'<br />');
1703         if (substr(strtolower($script), 0, 7) == 'http://') {
1704                 // But only if http:// is in front!
1705                 $script = substr($script, (strlen($url) + 7));
1706         } elseif (substr(strtolower($script), 0, 8) == 'https://') {
1707                 // Does this work?!
1708                 $script = substr($script, (strlen($url) + 8));
1709         }
1710
1711         //* DEBUG: */ print("SCRIPT=" . $script.'<br />');
1712         if (substr($script, 0, 1) == '/') $script = substr($script, 1);
1713
1714         // Return host name
1715         return $host;
1716 }
1717
1718 // Send a GET request
1719 function sendGetRequest ($script, $data = array()) {
1720         // Extract host name from script
1721         $host = extractHostnameFromUrl($script);
1722
1723         // Add data
1724         $scriptData = http_build_query($data, '', '&');
1725
1726         // Do we have a question-mark in the script?
1727         if (strpos($script, '?') === false) {
1728                 // No, so first char must be question mark
1729                 $scriptData = '?' . $scriptData;
1730         } else {
1731                 // Ok, add &
1732                 $scriptData = '&' . $scriptData;
1733         }
1734
1735         // Add script data
1736         $script .= $scriptData;
1737
1738         // Generate GET request header
1739         $request  = 'GET /' . trim($script) . ' HTTP/1.1' . getConfig('HTTP_EOL');
1740         $request .= 'Host: ' . $host . getConfig('HTTP_EOL');
1741         $request .= 'Referer: ' . getConfig('URL') . '/admin.php' . getConfig('HTTP_EOL');
1742         if (isConfigEntrySet('FULL_VERSION')) {
1743                 $request .= 'User-Agent: ' . getConfig('TITLE') . '/' . getConfig('FULL_VERSION') . getConfig('HTTP_EOL');
1744         } else {
1745                 $request .= 'User-Agent: ' . getConfig('TITLE') . '/' . getConfig('VERSION') . getConfig('HTTP_EOL');
1746         }
1747         $request .= 'Content-Type: text/plain' . getConfig('HTTP_EOL');
1748         $request .= 'Cache-Control: no-cache' . getConfig('HTTP_EOL');
1749         $request .= 'Connection: Close' . getConfig('HTTP_EOL') . getConfig('HTTP_EOL');
1750
1751         // Send the raw request
1752         $response = sendRawRequest($host, $request);
1753
1754         // Return the result to the caller function
1755         return $response;
1756 }
1757
1758 // Send a POST request
1759 function sendPostRequest ($script, $postData) {
1760         // Is postData an array?
1761         if (!is_array($postData)) {
1762                 // Abort here
1763                 logDebugMessage(__FUNCTION__, __LINE__, sprintf("postData is not an array. Type: %s", gettype($postData)));
1764                 return array('', '', '');
1765         } // END - if
1766
1767         // Extract host name from script
1768         $host = extractHostnameFromUrl($script);
1769
1770         // Construct request
1771         $data = http_build_query($postData, '', '&');
1772
1773         // Generate POST request header
1774         $request  = 'POST /' . trim($script) . ' HTTP/1.1' . getConfig('HTTP_EOL');
1775         $request .= 'Host: ' . $host . getConfig('HTTP_EOL');
1776         $request .= 'Referer: ' . getConfig('URL') . '/admin.php' . getConfig('HTTP_EOL');
1777         $request .= 'User-Agent: ' . getConfig('TITLE') . '/' . getConfig('FULL_VERSION') . getConfig('HTTP_EOL');
1778         $request .= 'Content-Type: application/x-www-form-urlencoded' . getConfig('HTTP_EOL');
1779         $request .= 'Content-length: ' . strlen($data) . getConfig('HTTP_EOL');
1780         $request .= 'Cache-Control: no-cache' . getConfig('HTTP_EOL');
1781         $request .= 'Connection: Close' . getConfig('HTTP_EOL') . getConfig('HTTP_EOL');
1782         $request .= $data;
1783
1784         // Send the raw request
1785         $response = sendRawRequest($host, $request);
1786
1787         // Return the result to the caller function
1788         return $response;
1789 }
1790
1791 // Sends a raw request to another host
1792 function sendRawRequest ($host, $request) {
1793         // Init errno and errdesc with 'all fine' values
1794         $errno = '0'; $errdesc = '';
1795
1796         // Initialize array
1797         $response = array('', '', '');
1798
1799         // Default is not to use proxy
1800         $useProxy = false;
1801
1802         // Are proxy settins set?
1803         if ((isConfigEntrySet('proxy_host')) && (getConfig('proxy_host') != '') && (isConfigEntrySet('proxy_port')) && (getConfig('proxy_port') > 0)) {
1804                 // Then use it
1805                 $useProxy = true;
1806         } // END - if
1807
1808         // Open connection
1809         //* DEBUG: */ die("SCRIPT=" . $script.'<br />');
1810         if ($useProxy === true) {
1811                 // Connect to host through proxy connection
1812                 $fp = @fsockopen(compileRawCode(getConfig('proxy_host')), bigintval(getConfig('proxy_port')), $errno, $errdesc, 30);
1813         } else {
1814                 // Connect to host directly
1815                 $fp = @fsockopen($host, 80, $errno, $errdesc, 30);
1816         }
1817
1818         // Is there a link?
1819         if (!is_resource($fp)) {
1820                 // Failed!
1821                 return $response;
1822         } // END - if
1823
1824         // Do we use proxy?
1825         if ($useProxy === true) {
1826                 // Generate CONNECT request header
1827                 $proxyTunnel  = 'CONNECT ' . $host . ':80 HTTP/1.1' . getConfig('HTTP_EOL');
1828                 $proxyTunnel .= 'Host: ' . $host . getConfig('HTTP_EOL');
1829
1830                 // Use login data to proxy? (username at least!)
1831                 if (getConfig('proxy_username') != '') {
1832                         // Add it as well
1833                         $encodedAuth = base64_encode(compileRawCode(getConfig('proxy_username')) . getConfig('ENCRYPT_SEPERATOR') . compileRawCode(getConfig('proxy_password')));
1834                         $proxyTunnel .= 'Proxy-Authorization: Basic ' . $encodedAuth . getConfig('HTTP_EOL');
1835                 } // END - if
1836
1837                 // Add last new-line
1838                 $proxyTunnel .= getConfig('HTTP_EOL');
1839                 //* DEBUG: */ print('<strong>proxyTunnel=</strong><pre>' . $proxyTunnel.'</pre>');
1840
1841                 // Write request
1842                 fputs($fp, $proxyTunnel);
1843
1844                 // Got response?
1845                 if (feof($fp)) {
1846                         // No response received
1847                         return $response;
1848                 } // END - if
1849
1850                 // Read the first line
1851                 $resp = trim(fgets($fp, 10240));
1852                 $respArray = explode(' ', $resp);
1853                 if ((strtolower($respArray[0]) !== 'http/1.0') || ($respArray[1] != '200')) {
1854                         // Invalid response!
1855                         return $response;
1856                 } // END - if
1857         } // END - if
1858
1859         // Write request
1860         fputs($fp, $request);
1861
1862         // Read response
1863         while (!feof($fp)) {
1864                 $response[] = trim(fgets($fp, 1024));
1865         } // END - while
1866
1867         // Close socket
1868         fclose($fp);
1869
1870         // Skip first empty lines
1871         $resp = $response;
1872         foreach ($resp as $idx => $line) {
1873                 // Trim space away
1874                 $line = trim($line);
1875
1876                 // Is this line empty?
1877                 if (empty($line)) {
1878                         // Then remove it
1879                         array_shift($response);
1880                 } else {
1881                         // Abort on first non-empty line
1882                         break;
1883                 }
1884         } // END - foreach
1885
1886         //* DEBUG: */ print('<strong>Response:</strong><pre>'.print_r($response, true).'</pre>');
1887
1888         // Proxy agent found?
1889         if ((substr(strtolower($response[0]), 0, 11) == 'proxy-agent') && ($useProxy === true)) {
1890                 // Proxy header detected, so remove two lines
1891                 array_shift($response);
1892                 array_shift($response);
1893         } // END - if
1894
1895         // Was the request successfull?
1896         if ((!eregi('200 OK', $response[0])) || (empty($response[0]))) {
1897                 // Not found / access forbidden
1898                 $response = array('', '', '');
1899         } // END - if
1900
1901         // Return response
1902         return $response;
1903 }
1904
1905 // Taken from www.php.net eregi() user comments
1906 function isEmailValid ($email) {
1907         // Check first part of email address
1908         $first = '[-a-z0-9!#$%&\'*+/=?^_<{|}~]+(\.[-a-zA-Z0-9!#$%&\'*+/=?^_<{|}~]+)*';
1909
1910         //  Check domain
1911         $domain = '[a-z0-9-]+(\.[a-z0-9-]{2,5})+';
1912
1913         // Generate pattern
1914         $regex = '@^' . $first . '\@' . $domain . '$@iU';
1915
1916         // Return check result
1917         return preg_match($regex, $email);
1918 }
1919
1920 // Function taken from user comments on www.php.net / function eregi()
1921 function isUrlValid ($URL, $compile=true) {
1922         // Trim URL a little
1923         $URL = trim(urldecode($URL));
1924         //* DEBUG: */ outputHtml($URL.'<br />');
1925
1926         // Compile some chars out...
1927         if ($compile === true) $URL = compileUriCode($URL, false, false, false);
1928         //* DEBUG: */ outputHtml($URL.'<br />');
1929
1930         // Check for the extension filter
1931         if (isExtensionActive('filter')) {
1932                 // Use the extension's filter set
1933                 return FILTER_VALIDATE_URL($URL, false);
1934         } // END - if
1935
1936         // If not installed, perform a simple test. Just make it sure there is always a http:// or
1937         // https:// in front of the URLs
1938         return isUrlValidSimple($URL);
1939 }
1940
1941 // Generate a list of administrative links to a given userid
1942 function generateMemberAdminActionLinks ($userid, $status = '') {
1943         // Make sure userid is a number
1944         if ($userid != bigintval($userid)) debug_report_bug('userid is not a number!');
1945
1946         // Define all main targets
1947         $targetArray = array('del_user', 'edit_user', 'lock_user', 'add_points', 'sub_points');
1948
1949         // Begin of navigation links
1950         $OUT = '[&nbsp;';
1951
1952         foreach ($targetArray as $tar) {
1953                 $OUT .= '<span class="admin_user_link"><a href="{%url=modules.php?module=admin&amp;what=' . $tar . '&amp;userid=' . $userid . '%}" title="{--ADMIN_LINK_';
1954                 //* DEBUG: */ outputHtml('*' . $tar.'/' . $status.'*<br />');
1955                 if (($tar == 'lock_user') && ($status == 'LOCKED')) {
1956                         // Locked accounts shall be unlocked
1957                         $OUT .= 'UNLOCK_USER';
1958                 } else {
1959                         // All other status is fine
1960                         $OUT .= strtoupper($tar);
1961                 }
1962                 $OUT .= '_TITLE--}">{--ADMIN_';
1963                 if (($tar == 'lock_user') && ($status == 'LOCKED')) {
1964                         // Locked accounts shall be unlocked
1965                         $OUT .= 'UNLOCK_USER';
1966                 } else {
1967                         // All other status is fine
1968                         $OUT .= strtoupper($tar);
1969                 }
1970                 $OUT .= '--}</a></span>&nbsp;|&nbsp;';
1971         }
1972
1973         // Finish navigation link
1974         $OUT = substr($OUT, 0, -7) . ']';
1975
1976         // Return string
1977         return $OUT;
1978 }
1979
1980 // Generate an email link
1981 function generateEmailLink ($email, $table = 'admins') {
1982         // Default email link (INSECURE! Spammer can read this by harvester programs)
1983         $EMAIL = 'mailto:' . $email;
1984
1985         // Check for several extensions
1986         if ((isExtensionActive('admins')) && ($table == 'admins')) {
1987                 // Create email link for contacting admin in guest area
1988                 $EMAIL = generateAdminEmailLink($email);
1989         } elseif ((isExtensionActive('user')) && (getExtensionVersion('user') >= '0.3.3') && ($table == 'user_data')) {
1990                 // Create email link for contacting a member within admin area (or later in other areas, too?)
1991                 $EMAIL = generateUserEmailLink($email, 'admin');
1992         } elseif ((isExtensionActive('sponsor')) && ($table == 'sponsor_data')) {
1993                 // Create email link to contact sponsor within admin area (or like the link above?)
1994                 $EMAIL = generateSponsorEmailLink($email, 'sponsor_data');
1995         }
1996
1997         // Shall I close the link when there is no admin?
1998         if ((!isAdmin()) && ($EMAIL == $email)) $EMAIL = '#'; // Closed!
1999
2000         // Return email link
2001         return $EMAIL;
2002 }
2003
2004 // Generate a hash for extra-security for all passwords
2005 function generateHash ($plainText, $salt = '') {
2006         // Is the required extension 'sql_patches' there and a salt is not given?
2007         if (((isExtensionInstalledAndOlder('sql_patches', '0.3.6')) || (!isExtensionActive('sql_patches')) || (!isExtensionInstalledAndNewer('other', '0.2.5'))) && (empty($salt))) {
2008                 // Extension sql_patches is missing/outdated so we hash the plain text with MD5
2009                 return md5($plainText);
2010         } // END - if
2011
2012         // Do we miss an arry element here?
2013         if (!isConfigEntrySet('file_hash')) {
2014                 // Stop here
2015                 debug_report_bug('Missing file_hash in ' . __FUNCTION__ . '.');
2016         } // END - if
2017
2018         // When the salt is empty build a new one, else use the first x configured characters as the salt
2019         if (empty($salt)) {
2020                 // Build server string (inc/databases.php is no longer updated with every commit)
2021                 $server = $_SERVER['PHP_SELF'] . getConfig('ENCRYPT_SEPERATOR') . detectUserAgent() . getConfig('ENCRYPT_SEPERATOR') . getenv('SERVER_SOFTWARE') . getConfig('ENCRYPT_SEPERATOR') . detectRemoteAddr();
2022
2023                 // Build key string
2024                 $keys   = getConfig('SITE_KEY') . getConfig('ENCRYPT_SEPERATOR') . getConfig('DATE_KEY') . getConfig('ENCRYPT_SEPERATOR') . getConfig('secret_key') . getConfig('ENCRYPT_SEPERATOR') . getConfig('file_hash') . getConfig('ENCRYPT_SEPERATOR') . date('d-m-Y (l-F-T)', getConfig('patch_ctime')) . getConfig('ENCRYPT_SEPERATOR') . getConfig('master_salt');
2025
2026                 // Additional data
2027                 $data = $plainText . getConfig('ENCRYPT_SEPERATOR') . uniqid(mt_rand(), true) . getConfig('ENCRYPT_SEPERATOR') . time();
2028
2029                 // Calculate number for generating the code
2030                 $a = time() + getConfig('_ADD') - 1;
2031
2032                 // Generate SHA1 sum from modula of number and the prime number
2033                 $sha1 = sha1(($a % getConfig('_PRIME')) . $server . getConfig('ENCRYPT_SEPERATOR') . $keys . getConfig('ENCRYPT_SEPERATOR') . $data . getConfig('ENCRYPT_SEPERATOR') . getConfig('DATE_KEY') . getConfig('ENCRYPT_SEPERATOR') . $a);
2034                 //* DEBUG: */ outputHtml('SHA1=' . $sha1.' ('.strlen($sha1).')<br />');
2035                 $sha1 = scrambleString($sha1);
2036                 //* DEBUG: */ outputHtml('Scrambled=' . $sha1.' ('.strlen($sha1).')<br />');
2037                 //* DEBUG: */ $sha1b = descrambleString($sha1);
2038                 //* DEBUG: */ outputHtml('Descrambled=' . $sha1b.' ('.strlen($sha1b).')<br />');
2039
2040                 // Generate the password salt string
2041                 $salt = substr($sha1, 0, getConfig('salt_length'));
2042                 //* DEBUG: */ outputHtml($salt.' ('.strlen($salt).')<br />');
2043         } else {
2044                 // Use given salt
2045                 //* DEBUG: */ print 'salt=' . $salt . '<br />';
2046                 $salt = substr($salt, 0, getConfig('salt_length'));
2047                 //* DEBUG: */ print 'salt=' . $salt . '(' . strlen($salt) . '/' . getConfig('salt_length') . ')<br />';
2048
2049                 // Sanity check on salt
2050                 if (strlen($salt) != getConfig('salt_length')) {
2051                         // Not the same!
2052                         debug_report_bug(__FUNCTION__.': salt length mismatch! ('.strlen($salt).'/'.getConfig('salt_length').')');
2053                 } // END - if
2054         }
2055
2056         // Return hash
2057         return $salt.sha1($salt . $plainText);
2058 }
2059
2060 // Scramble a string
2061 function scrambleString($str) {
2062         // Init
2063         $scrambled = '';
2064
2065         // Final check, in case of failture it will return unscrambled string
2066         if (strlen($str) > 40) {
2067                 // The string is to long
2068                 return $str;
2069         } elseif (strlen($str) == 40) {
2070                 // From database
2071                 $scrambleNums = explode(':', getConfig('pass_scramble'));
2072         } else {
2073                 // Generate new numbers
2074                 $scrambleNums = explode(':', genScrambleString(strlen($str)));
2075         }
2076
2077         // Scramble string here
2078         //* DEBUG: */ outputHtml('***Original=' . $str.'***<br />');
2079         for ($idx = '0'; $idx < strlen($str); $idx++) {
2080                 // Get char on scrambled position
2081                 $char = substr($str, $scrambleNums[$idx], 1);
2082
2083                 // Add it to final output string
2084                 $scrambled .= $char;
2085         } // END - for
2086
2087         // Return scrambled string
2088         //* DEBUG: */ outputHtml('***Scrambled=' . $scrambled.'***<br />');
2089         return $scrambled;
2090 }
2091
2092 // De-scramble a string scrambled by scrambleString()
2093 function descrambleString($str) {
2094         // Scramble only 40 chars long strings
2095         if (strlen($str) != 40) return $str;
2096
2097         // Load numbers from config
2098         $scrambleNums = explode(':', getConfig('pass_scramble'));
2099
2100         // Validate numbers
2101         if (count($scrambleNums) != 40) return $str;
2102
2103         // Begin descrambling
2104         $orig = str_repeat(' ', 40);
2105         //* DEBUG: */ outputHtml('+++Scrambled=' . $str.'+++<br />');
2106         for ($idx = '0'; $idx < 40; $idx++) {
2107                 $char = substr($str, $idx, 1);
2108                 $orig = substr_replace($orig, $char, $scrambleNums[$idx], 1);
2109         } // END - for
2110
2111         // Return scrambled string
2112         //* DEBUG: */ outputHtml('+++Original=' . $orig.'+++<br />');
2113         return $orig;
2114 }
2115
2116 // Generated a "string" for scrambling
2117 function genScrambleString ($len) {
2118         // Prepare array for the numbers
2119         $scrambleNumbers = array();
2120
2121         // First we need to setup randomized numbers from 0 to 31
2122         for ($idx = '0'; $idx < $len; $idx++) {
2123                 // Generate number
2124                 $rand = mt_rand(0, ($len -1));
2125
2126                 // Check for it by creating more numbers
2127                 while (array_key_exists($rand, $scrambleNumbers)) {
2128                         $rand = mt_rand(0, ($len -1));
2129                 } // END - while
2130
2131                 // Add number
2132                 $scrambleNumbers[$rand] = $rand;
2133         } // END - for
2134
2135         // So let's create the string for storing it in database
2136         $scrambleString = implode(':', $scrambleNumbers);
2137         return $scrambleString;
2138 }
2139
2140 // Generate an PGP-like encrypted hash of given hash for e.g. cookies
2141 function generatePassString ($passHash) {
2142         // Return vanilla password hash
2143         $ret = $passHash;
2144
2145         // Is a secret key and master salt already initialized?
2146         if ((isExtensionInstalled('sql_patches')) && (isExtensionInstalledAndNewer('other', '0.2.5')) && (isConfigEntrySet('_PRIME')) && (isConfigEntrySet('secret_key')) && (isConfigEntrySet('master_salt'))) {
2147                 // Only calculate when the secret key is generated
2148                 $newHash = ''; $start = 9;
2149                 for ($idx = '0'; $idx < 10; $idx++) {
2150                         $part1 = hexdec(substr($passHash, $start, 4));
2151                         $part2 = hexdec(substr(getConfig('secret_key'), $start, 4));
2152                         $mod = dechex($idx);
2153                         if ($part1 > $part2) {
2154                                 $mod = dechex(sqrt(($part1 - $part2) * getConfig('_PRIME') / pi()));
2155                         } elseif ($part2 > $part1) {
2156                                 $mod = dechex(sqrt(($part2 - $part1) * getConfig('_PRIME') / pi()));
2157                         }
2158                         $mod = substr($mod, 0, 4);
2159                         //* DEBUG: */ outputHtml('part1='.$part1.'/part2='.$part2.'/mod=' . $mod . '('.strlen($mod).')<br />');
2160                         $mod = str_repeat(0, (4 - strlen($mod))) . $mod;
2161                         //* DEBUG: */ outputHtml('*' . $start . '=' . $mod . '*<br />');
2162                         $start += 4;
2163                         $newHash .= $mod;
2164                 } // END - for
2165
2166                 //* DEBUG: */ print($passHash.'<br />' . $newHash." (".strlen($newHash).')<br />');
2167                 $ret = generateHash($newHash, getConfig('master_salt'));
2168                 //* DEBUG: */ print('ret='.$ret.'<br />');
2169         } else {
2170                 // Hash it simple
2171                 //* DEBUG: */ outputHtml("--" . $passHash."--<br />");
2172                 $ret = md5($passHash);
2173                 //* DEBUG: */ outputHtml("++" . $ret."++<br />");
2174         }
2175
2176         // Return result
2177         return $ret;
2178 }
2179
2180 // Fix "deleted" cookies
2181 function fixDeletedCookies ($cookies) {
2182         // Is this an array with entries?
2183         if ((is_array($cookies)) && (count($cookies) > 0)) {
2184                 // Then check all cookies if they are marked as deleted!
2185                 foreach ($cookies as $cookieName) {
2186                         // Is the cookie set to "deleted"?
2187                         if (getSession($cookieName) == 'deleted') {
2188                                 setSession($cookieName, '');
2189                         } // END - if
2190                 } // END - foreach
2191         } // END - if
2192 }
2193
2194 // Output error messages in a fasioned way and die...
2195 function app_die ($F, $L, $message) {
2196         // Check if Script is already dieing and not let it kill itself another 1000 times
2197         if (!isset($GLOBALS['app_died'])) {
2198                 // Make sure, that the script realy realy diese here and now
2199                 $GLOBALS['app_died'] = true;
2200
2201                 // Load header
2202                 loadIncludeOnce('inc/header.php');
2203
2204                 // Rewrite message for output
2205                 $message = sprintf(getMessage('MXCHANGE_HAS_DIED'), basename($F), $L, $message);
2206
2207                 // Better log this message away
2208                 logDebugMessage($F, $L, $message);
2209
2210                 // Load the message template
2211                 loadTemplate('admin_settings_saved', false, $message);
2212
2213                 // Load footer
2214                 loadIncludeOnce('inc/footer.php');
2215         } else {
2216                 // Script tried to kill itself twice
2217                 debug_report_bug('Script wanted to kill itself more than once! Raw message=' . $message . ', file/function=' . $F . ', line=' . $L);
2218         }
2219 }
2220
2221 // Display parsing time and number of SQL queries in footer
2222 function displayParsingTime() {
2223         // Is the timer started?
2224         if (!isset($GLOBALS['startTime'])) {
2225                 // Abort here
2226                 return false;
2227         } // END - if
2228
2229         // Get end time
2230         $endTime = microtime(true);
2231
2232         // "Explode" both times
2233         $start = explode(' ', $GLOBALS['startTime']);
2234         $end = explode(' ', $endTime);
2235         $runTime = $end[0] - $start[0];
2236         if ($runTime < 0) $runTime = '0';
2237
2238         // Prepare output
2239         $content = array(
2240                 'runtime'  => translateComma($runTime),
2241                 'timeSQLs' => translateComma(getConfig('sql_time') * 1000),
2242         );
2243
2244         // Load the template
2245         loadTemplate('show_timings', false, $content);
2246 }
2247
2248 // Check wether a boolean constant is set
2249 // Taken from user comments in PHP documentation for function constant()
2250 function isBooleanConstantAndTrue ($constName) { // : Boolean
2251         // Failed by default
2252         $res = false;
2253
2254         // In cache?
2255         if (isset($GLOBALS['cache_array']['const'][$constName])) {
2256                 // Use cache
2257                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): " . $constName."-CACHE!<br />");
2258                 $res = ($GLOBALS['cache_array']['const'][$constName] === true);
2259         } else {
2260                 // Check constant
2261                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): " . $constName."-RESOLVE!<br />");
2262                 if (defined($constName)) {
2263                         // Found!
2264                         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): " . $constName."-FOUND!<br />");
2265                         $res = (constant($constName) === true);
2266                 } // END - if
2267
2268                 // Set cache
2269                 $GLOBALS['cache_array']['const'][$constName] = $res;
2270         }
2271         //* DEBUG: */ var_dump($res);
2272
2273         // Return value
2274         return $res;
2275 }
2276
2277 // Checks if a given apache module is loaded
2278 function isApacheModuleLoaded ($apacheModule) {
2279         // Check it and return result
2280         return (((function_exists('apache_get_modules')) && (in_array($apacheModule, apache_get_modules()))) || (!function_exists('apache_get_modules')));
2281 }
2282
2283 // Get current theme name
2284 function getCurrentTheme () {
2285         // The default theme is 'default'... ;-)
2286         $ret = 'default';
2287
2288         // Do we have ext-theme installed and active?
2289         if (isExtensionActive('theme')) {
2290                 // Call inner method
2291                 $ret = getActualTheme();
2292         } // END - if
2293
2294         // Return theme value
2295         return $ret;
2296 }
2297
2298 // Generates an error code from given account status
2299 function generateErrorCodeFromUserStatus ($status='') {
2300         // If no status is provided, use the default, cached
2301         if ((empty($status)) && (isMember())) {
2302                 // Get user status
2303                 $status = getUserData('status');
2304         } // END - if
2305
2306         // Default error code if unknown account status
2307         $errorCode = getCode('UNKNOWN_STATUS');
2308
2309         // Generate constant name
2310         $codeName = sprintf("ID_%s", $status);
2311
2312         // Is the constant there?
2313         if (isCodeSet($codeName)) {
2314                 // Then get it!
2315                 $errorCode = getCode($codeName);
2316         } else {
2317                 // Unknown status
2318                 logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown error status %s detected.", $status));
2319         }
2320
2321         // Return error code
2322         return $errorCode;
2323 }
2324
2325 // Function to search for the last modifified file
2326 function searchDirsRecursive ($dir, &$last_changed) {
2327         // Get dir as array
2328         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):dir=" . $dir.'<br />');
2329         // Does it match what we are looking for? (We skip a lot files already!)
2330         // RegexPattern to exclude  ., .., .revision,  .svn, debug.log or .cache in the filenames
2331         $excludePattern = '@(\.revision|debug\.log|\.cache|config\.php)$@';
2332         $ds = getArrayFromDirectory($dir, '', true, false, array(), '.php', $excludePattern);
2333         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):ds[]=".count($ds).'<br />');
2334
2335         // Walk through all entries
2336         foreach ($ds as $d) {
2337                 // Generate proper FQFN
2338                 $FQFN = str_replace('//', '/', getConfig('PATH') . $dir. '/'. $d);
2339
2340                 // Is it a file and readable?
2341                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):FQFN={$FQFN}<br />");
2342                 if (isDirectory($FQFN)) {
2343                         // $FQFN is a directory so also crawl into this directory
2344                         $newDir = $d;
2345                         if (!empty($dir)) $newDir = $dir . '/'. $d;
2346                         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):DESCENT: " . $newDir.'<br />');
2347                         searchDirsRecursive($newDir, $last_changed);
2348                 } elseif (isFileReadable($FQFN)) {
2349                         // $FQFN is a filename and no directory
2350                         $time = filemtime($FQFN);
2351                         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):File: " . $d." found. (".($last_changed['time'] - $time).")<br />");
2352                         if ($last_changed['time'] < $time) {
2353                                 // This file is newer as the file before
2354                                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>) - NEWER!<br />");
2355                                 $last_changed['path_name'] = $FQFN;
2356                                 $last_changed['time'] = $time;
2357                         } // END - if
2358                 }
2359         } // END - foreach
2360 }
2361
2362 // "Getter" for revision/version data
2363 function getActualVersion ($type = 'Revision') {
2364         // By default nothing is new... ;-)
2365         $new = false;
2366
2367         // Is the cache entry there?
2368         if (isset($GLOBALS['cache_array']['revision'][$type])) {
2369                 // Found so increase cache hit
2370                 incrementStatsEntry('cache_hits');
2371
2372                 // Return it
2373                 return $GLOBALS['cache_array']['revision'][$type][0];
2374         } else {
2375                 // FQFN of revision file
2376                 $FQFN = sprintf("%s/.revision", getConfig('CACHE_PATH'));
2377
2378                 // Check if 'check_revision_data' is setted (switch for manually rewrite the .revision-File)
2379                 if ((isGetRequestElementSet('check_revision_data')) && (getRequestElement('check_revision_data') == 'yes')) {
2380                         // Forced rebuild of .revision file
2381                         $new = true;
2382                 } else {
2383                         // Check for revision file
2384                         if (!isFileReadable($FQFN)) {
2385                                 // Not found, so we need to create it
2386                                 $new = true;
2387                         } else {
2388                                 // Revision file found
2389                                 $ins_vers = explode("\n", readFromFile($FQFN));
2390
2391                                 // Get array for mapping information
2392                                 $mapper = array_flip(getSearchFor());
2393                                 //* DEBUG: */ print('<pre>mapper='.print_r($mapper, true).'</pre>ins_vers=<pre>'.print_r($ins_vers, true).'</pre>');
2394
2395                                 // Is the content valid?
2396                                 if ((!is_array($ins_vers)) || (count($ins_vers) <= 0) || (!isset($ins_vers[$mapper[$type]])) || (trim($ins_vers[$mapper[$type]]) == '') || ($ins_vers[0]) == 'new') {
2397                                         // File needs update!
2398                                         $new = true;
2399                                 } else {
2400                                         // Generate fake cache entry
2401                                         foreach ($mapper as $map => $idx) {
2402                                                 $GLOBALS['cache_array']['revision'][$map][0] = $ins_vers[$idx];
2403                                         } // END - foreach
2404
2405                                         // Return found value
2406                                         return trim($ins_vers[$mapper[$type]]);
2407                                 }
2408                         }
2409                 }
2410
2411                 // Has it been updated?
2412                 if ($new === true)  {
2413                         // Write it
2414                         writeToFile($FQFN, implode("\n", getArrayFromActualVersion()));
2415
2416                         // ... and call recursive
2417                         return getActualVersion($type);
2418                 } // END - if
2419         }
2420 }
2421
2422 // Repares an array we are looking for
2423 // The returned Array is needed twice (in getArrayFromActualVersion() and in getActualVersion() in the old .revision-fallback) so I puted it in an extra function to not polute the global namespace
2424 function getSearchFor () {
2425         // Add Revision, Date, Tag and Author
2426         $searchFor = array('Revision', 'Date', 'Tag', 'Author', 'File');
2427
2428         // Return the created array
2429         return $searchFor;
2430 }
2431
2432 // @TODO Please describe this function
2433 function getArrayFromActualVersion () {
2434         // Init variables
2435         $next_dir = '';
2436
2437         // Directory to start with search
2438         $last_changed = array(
2439                 'path_name' => '',
2440                 'time'      => 0
2441         );
2442
2443         // Init return array
2444         $akt_vers = array();
2445
2446         // Init value for counting the founded keywords
2447         $res = '0';
2448
2449         // Searches all Files and there date of the last modifikation and puts the newest File in $last_changed.
2450         searchDirsRecursive($next_dir, $last_changed); // @TODO small change to API to $last_changed = searchDirsRecursive($next_dir, $time);
2451
2452         // Get file
2453         $last_file = readFromFile($last_changed['path_name']);
2454
2455         // Get all the keywords to search for
2456         $searchFor = getSearchFor();
2457
2458         // This foreach loops the $searchFor-Tags (array('Revision', 'Date', 'Tag', 'Author') --> could easaly extended in the future)
2459         foreach ($searchFor as $search) {
2460                 // Searches for "$search-tag:VALUE$" or "$search-tag::VALUE$"(the stylish keywordversion ;-)) in the lates modified file
2461                 $res += preg_match('@\$' . $search.'(:|::) (.*) \$@U', $last_file, $t);
2462                 // This trimms the search-result and puts it in the $GLOBALS['cache_array']['revision']-return array
2463                 if (isset($t[2])) $GLOBALS['cache_array']['revision'][$search] = trim($t[2]);
2464         } // END - foreach
2465
2466         // Save the last-changed filename for debugging
2467         $GLOBALS['cache_array']['revision']['File'] = $last_changed['path_name'];
2468
2469         // at least 3 keyword-Tags are needed for propper values
2470         if ($res && $res >= 3
2471         && isset($GLOBALS['cache_array']['revision']['Revision']) && $GLOBALS['cache_array']['revision']['Revision'] != ''
2472         && isset($GLOBALS['cache_array']['revision']['Date']) && $GLOBALS['cache_array']['revision']['Date'] != ''
2473         && isset($GLOBALS['cache_array']['revision']['Tag']) && $GLOBALS['cache_array']['revision']['Tag'] != '') {
2474                 // Prepare content witch need special treadment
2475
2476                 // Prepare timestamp for date
2477                 preg_match('@(....)-(..)-(..) (..):(..):(..)@', $GLOBALS['cache_array']['revision']['Date'], $match_d);
2478                 $GLOBALS['cache_array']['revision']['Date'] = mktime($match_d[4], $match_d[5], $match_d[6], $match_d[2], $match_d[3], $match_d[1]);
2479
2480                 // Add author to the Tag if the author is set and is not quix0r (lead coder)
2481                 if ((isset($GLOBALS['cache_array']['revision']['Author'])) && ($GLOBALS['cache_array']['revision']['Author'] != 'quix0r')) {
2482                         $GLOBALS['cache_array']['revision']['Tag'] .= '-'.strtoupper($GLOBALS['cache_array']['revision']['Author']);
2483                 } // END - if
2484
2485         } else {
2486                 // No valid Data from the last modificated file so read the Revision from the Server. Fallback-solution!! Should not be removed I think.
2487                 $version = sendGetRequest('check-updates3.php');
2488
2489                 // Prepare content
2490                 // Only sets not setted or not proper values to the Online-Server-Fallback-Solution
2491                 if (!isset($GLOBALS['cache_array']['revision']['Revision']) || $GLOBALS['cache_array']['revision']['Revision'] == '') $GLOBALS['cache_array']['revision']['Revision'] = trim($version[10]);
2492                 if (!isset($GLOBALS['cache_array']['revision']['Date'])     || $GLOBALS['cache_array']['revision']['Date']     == '') $GLOBALS['cache_array']['revision']['Date']     = trim($version[9]);
2493                 if (!isset($GLOBALS['cache_array']['revision']['Tag'])      || $GLOBALS['cache_array']['revision']['Tag']      == '') $GLOBALS['cache_array']['revision']['Tag']      = trim($version[8]);
2494                 if (!isset($GLOBALS['cache_array']['revision']['Author'])   || $GLOBALS['cache_array']['revision']['Author']   == '') $GLOBALS['cache_array']['revision']['Author']   = 'quix0r';
2495                 if (!isset($GLOBALS['cache_array']['revision']['File'])     || $GLOBALS['cache_array']['revision']['File']     == '') $GLOBALS['cache_array']['revision']['File']     = trim($version[11]);
2496         }
2497
2498         // Return prepared array
2499         return $GLOBALS['cache_array']['revision'];
2500 }
2501
2502 // Back-ported from the new ship-simu engine. :-)
2503 function debug_get_printable_backtrace () {
2504         // Init variable
2505         $backtrace = "<ol>\n";
2506
2507         // Get and prepare backtrace for output
2508         $backtraceArray = debug_backtrace();
2509         foreach ($backtraceArray as $key => $trace) {
2510                 if (!isset($trace['file'])) $trace['file'] = __FUNCTION__;
2511                 if (!isset($trace['line'])) $trace['line'] = __LINE__;
2512                 if (!isset($trace['args'])) $trace['args'] = array();
2513                 $backtrace .= "<li class=\"debug_list\"><span class=\"backtrace_file\">".basename($trace['file'])."</span>:" . $trace['line'].", <span class=\"backtrace_function\">" . $trace['function'].'('.count($trace['args']).")</span></li>\n";
2514         } // END - foreach
2515
2516         // Close it
2517         $backtrace .= "</ol>\n";
2518
2519         // Return the backtrace
2520         return $backtrace;
2521 }
2522
2523 // A mail-able backtrace
2524 function debug_get_mailable_backtrace () {
2525         // Init variable
2526         $backtrace = '';
2527
2528         // Get and prepare backtrace for output
2529         $backtraceArray = debug_backtrace();
2530         foreach ($backtraceArray as $key => $trace) {
2531                 if (!isset($trace['file'])) $trace['file'] = __FUNCTION__;
2532                 if (!isset($trace['line'])) $trace['line'] = __LINE__;
2533                 if (!isset($trace['args'])) $trace['args'] = array();
2534                 $backtrace .= ($key+1) . '.:' . basename($trace['file']) . ':' . $trace['line'] . ', ' . $trace['function'] . '(' . count($trace['args']) . ")\n";
2535         } // END - foreach
2536
2537         // Return the backtrace
2538         return $backtrace;
2539 }
2540
2541 // Output a debug backtrace to the user
2542 function debug_report_bug ($message = '', $sendEmail = true) {
2543         // Is this already called?
2544         if (isset($GLOBALS[__FUNCTION__])) {
2545                 // Other backtrace
2546                 print 'Message:'.$message.'<br />Backtrace:<pre>';
2547                 debug_print_backtrace();
2548                 die('</pre>');
2549         } // END - if
2550
2551         // Set this function as called
2552         $GLOBALS[__FUNCTION__] = true;
2553
2554         // Init message
2555         $debug = '';
2556
2557         // Is the optional message set?
2558         if (!empty($message)) {
2559                 // Use and log it
2560                 $debug = sprintf("Note: %s<br />\n",
2561                         $message
2562                 );
2563
2564                 // @TODO Add a little more infos here
2565                 logDebugMessage(__FUNCTION__, __LINE__, strip_tags($message));
2566         } // END - if
2567
2568         // Add output
2569         $debug .= "Please report this bug at <a title=\"Direct link to the bug-tracker\" href=\"http://bugs.mxchange.org\" rel=\"external\" target=\"_blank\">http://bugs.mxchange.org</a> and include the logfile from <strong>" . str_replace(getConfig('PATH'), '', getConfig('CACHE_PATH')) . "debug.log</strong> in your report (you can now attach files):<pre>";
2570         $debug .= debug_get_printable_backtrace();
2571         $debug .= "</pre>\nRequest-URI: " . getRequestUri()."<br />\n";
2572         $debug .= "Thank you for finding bugs.";
2573
2574         // Send an email? (e.g. not wanted for evaluation errors)
2575         if ($sendEmail === true) {
2576                 // Prepare content
2577                 $content = array(
2578                         'message'     => trim($message),
2579                         'backtrace'   => trim(debug_get_mailable_backtrace())
2580                 );
2581
2582                 // Send email to webmaster
2583                 sendAdminNotification(getMessage('DEBUG_REPORT_BUG_SUBJECT'), 'admin_report_bug', $content);
2584         } // END - if
2585
2586         // And abort here
2587         // @TODO This cannot be rewritten to app_die(), try to find a solution for this.
2588         die($debug);
2589 }
2590
2591 // Generates a ***weak*** seed
2592 function generateSeed () {
2593         return microtime(true) * 100000;
2594 }
2595
2596 // Converts a message code to a human-readable message
2597 function getMessageFromErrorCode ($code) {
2598         $message = '';
2599         switch ($code) {
2600                 case '': break;
2601                 case getCode('LOGOUT_DONE')       : $message = getMessage('LOGOUT_DONE'); break;
2602                 case getCode('LOGOUT_FAILED')     : $message = '<span class="guest_failed">{--LOGOUT_FAILED--}</span>'; break;
2603                 case getCode('DATA_INVALID')      : $message = getMessage('MAIL_DATA_INVALID'); break;
2604                 case getCode('POSSIBLE_INVALID')  : $message = getMessage('MAIL_POSSIBLE_INVALID'); break;
2605                 case getCode('ACCOUNT_LOCKED')    : $message = getMessage('MEMBER_ACCOUNT_LOCKED_UNC'); break;
2606                 case getCode('USER_404')          : $message = getMessage('USER_404'); break;
2607                 case getCode('STATS_404')         : $message = getMessage('MAIL_STATS_404'); break;
2608                 case getCode('ALREADY_CONFIRMED') : $message = getMessage('MAIL_ALREADY_CONFIRMED'); break;
2609                 case getCode('WRONG_PASS')        : $message = getMessage('LOGIN_WRONG_PASS'); break;
2610                 case getCode('WRONG_ID')          : $message = getMessage('LOGIN_WRONG_ID'); break;
2611                 case getCode('STATUS_LOCKED')     : $message = getMessage('LOGIN_STATUS_LOCKED'); break;
2612                 case getCode('STATUS_UNCONFIRMED'): $message = getMessage('LOGIN_STATUS_UNCONFIRMED'); break;
2613                 case getCode('COOKIES_DISABLED')  : $message = getMessage('LOGIN_COOKIES_DISABLED'); break;
2614                 case getCode('BEG_SAME_AS_OWN')   : $message = getMessage('BEG_SAME_UID_AS_OWN'); break;
2615                 case getCode('LOGIN_FAILED')      : $message = getMessage('LOGIN_FAILED_GENERAL'); break;
2616                 case getCode('MODULE_MEM_ONLY')   : $message = sprintf(getMessage('MODULE_MEM_ONLY'), getRequestElement('mod')); break;
2617                 case getCode('OVERLENGTH')        : $message = getMessage('MEMBER_TEXT_OVERLENGTH'); break;
2618                 case getCode('URL_FOUND')         : $message = getMessage('MEMBER_TEXT_CONTAINS_URL'); break;
2619                 case getCode('SUBJ_URL')          : $message = getMessage('MEMBER_SUBJ_CONTAINS_URL'); break;
2620                 case getCode('BLIST_URL')         : $message = "{--MEMBER_URL_BLACK_LISTED--}<br />\n{--MEMBER_BLIST_TIME--}: ".generateDateTime(getRequestElement('blist'), 0); break;
2621                 case getCode('NO_RECS_LEFT')      : $message = getMessage('MEMBER_SELECTED_MORE_RECS'); break;
2622                 case getCode('INVALID_TAGS')      : $message = getMessage('MEMBER_HTML_INVALID_TAGS'); break;
2623                 case getCode('MORE_POINTS')       : $message = getMessage('MEMBER_MORE_POINTS_NEEDED'); break;
2624                 case getCode('MORE_RECEIVERS1')   : $message = getMessage('MEMBER_ENTER_MORE_RECEIVERS'); break;
2625                 case getCode('MORE_RECEIVERS2')   : $message = getMessage('MEMBER_NO_MORE_RECEIVERS_FOUND'); break;
2626                 case getCode('MORE_RECEIVERS3')   : $message = sprintf(getMessage('MEMBER_ENTER_MORE_MIN_RECEIVERS'), getConfig('order_min')); break;
2627                 case getCode('INVALID_URL')       : $message = getMessage('MEMBER_ENTER_INVALID_URL'); break;
2628
2629                 case getCode('ERROR_MAILID'):
2630                         if (isExtensionActive('mailid', true)) {
2631                                 $message = getMessage('ERROR_CONFIRMING_MAIL');
2632                         } else {
2633                                 $message = sprintf(getMessage('EXTENSION_PROBLEM_NOT_INSTALLED'), 'mailid');
2634                         }
2635                         break;
2636
2637                 case getCode('EXTENSION_PROBLEM'):
2638                         if (isGetRequestElementSet('ext')) {
2639                                 $message = generateExtensionInactiveNotInstalledMessage(getRequestElement('ext'));
2640                         } else {
2641                                 $message = getMessage('EXTENSION_PROBLEM_UNSET_EXT');
2642                         }
2643                         break;
2644
2645                 case getCode('URL_TLOCK'):
2646                         $result = SQL_QUERY_ESC("SELECT `timestamp` FROM `{?_MYSQL_PREFIX?}_pool` WHERE `id`=%s LIMIT 1",
2647                                 array(bigintval(getRequestElement('id'))), __FILE__, __LINE__);
2648
2649                         // Load timestamp from last order
2650                         list($timestamp) = SQL_FETCHROW($result);
2651                         $timestamp = generateDateTime($timestamp, 1);
2652
2653                         // Free memory
2654                         SQL_FREERESULT($result);
2655
2656                         // Calculate hours...
2657                         $STD = round(getConfig('url_tlock') / 60 / 60);
2658
2659                         // Minutes...
2660                         $MIN = round((getConfig('url_tlock') - $STD * 60 * 60) / 60);
2661
2662                         // And seconds
2663                         $SEC = getConfig('url_tlock') - $STD * 60 * 60 - $MIN * 60;
2664
2665                         // Finally contruct the message
2666                         // @TODO Rewrite this old lost code to a template
2667                         $message = "{--MEMBER_URL_TIME_LOCK--}<br />{--CONFIG_URL_TLOCK--} ".$STD."
2668                         {--_HOURS--}, ".$MIN." {--_MINUTES--} {--_AND--} ".$SEC." {--_SECONDS--}<br />
2669                         {--MEMBER_LAST_TLOCK--}: ".$timestamp;
2670                         break;
2671
2672                 default:
2673                         // Missing/invalid code
2674                         $message = sprintf(getMessage('UNKNOWN_MAILID_CODE'), $code);
2675
2676                         // Log it
2677                         logDebugMessage(__FUNCTION__, __LINE__, $message);
2678                         break;
2679         } // END - switch
2680
2681         // Return the message
2682         return $message;
2683 }
2684
2685 // Compile characters which are allowed in URLs
2686 function compileUriCode ($code, $simple = true) {
2687         // Compile constants
2688         if ($simple === false) $code = str_replace('{--', '".', str_replace('--}', '."', $code));
2689
2690         // Compile QUOT and other non-HTML codes
2691         $code = str_replace('{DOT}', '.',
2692                 str_replace('{SLASH}', '/',
2693                 str_replace('{QUOT}', "'",
2694                 str_replace('{DOLLAR}', '$',
2695                 str_replace('{OPEN_ANCHOR}', '(',
2696                 str_replace('{CLOSE_ANCHOR}', ')',
2697                 str_replace('{OPEN_SQR}', '[',
2698                 str_replace('{CLOSE_SQR}', ']',
2699                 str_replace('{PER}', '%',
2700                 $code
2701         )))))))));
2702
2703         // Return compiled code
2704         return $code;
2705 }
2706
2707 // Function taken from user comments on www.php.net / function eregi()
2708 function isUrlValidSimple ($url) {
2709         // Prepare URL
2710         $url = secureString(str_replace("\\", '', compileRawCode(urldecode($url))));
2711
2712         // Allows http and https
2713         $http      = "(http|https)+(:\/\/)";
2714         // Test domain
2715         $domain1   = "([[:alnum:]]([-[:alnum:]])*\.)?([[:alnum:]][-[:alnum:]\.]*[[:alnum:]])(\.[[:alpha:]]{2,5})?";
2716         // Test double-domains (e.g. .de.vu)
2717         $domain2   = "([-[:alnum:]])?(\.[[:alnum:]][-[:alnum:]\.]*[[:alnum:]])(\.[[:alpha:]]{2,5})(\.[[:alpha:]]{2,5})?";
2718         // Test IP number
2719         $ip        = "([[:digit:]]{1,3})\.([[:digit:]]{1,3})\.([[:digit:]]{1,3})\.([[:digit:]]{1,3})";
2720         // ... directory
2721         $dir       = "((/)+([-_\.[:alnum:]])+)*";
2722         // ... page
2723         $page      = "/([-_[:alnum:]][-\._[:alnum:]]*\.[[:alnum:]]{2,5})?";
2724         // ... and the string after and including question character
2725         $getstring1 = "([\?/]([[:alnum:]][-\._%[:alnum:]]*(=)?([-\@\._:%[:alnum:]])+)(&([[:alnum:]]([-_%[:alnum:]])*(=)?([-\@\[\._:%[:alnum:]])+(\])*))*)?";
2726         // Pattern for URLs like http://url/dir/doc.html?var=value
2727         $pattern['d1dpg1']  = $http . $domain1 . $dir . $page . $getstring1;
2728         $pattern['d2dpg1']  = $http . $domain2 . $dir . $page . $getstring1;
2729         $pattern['ipdpg1']  = $http . $ip . $dir . $page . $getstring1;
2730         // Pattern for URLs like http://url/dir/?var=value
2731         $pattern['d1dg1']  = $http . $domain1 . $dir.'/' . $getstring1;
2732         $pattern['d2dg1']  = $http . $domain2 . $dir.'/' . $getstring1;
2733         $pattern['ipdg1']  = $http . $ip . $dir.'/' . $getstring1;
2734         // Pattern for URLs like http://url/dir/page.ext
2735         $pattern['d1dp']  = $http . $domain1 . $dir . $page;
2736         $pattern['d1dp']  = $http . $domain2 . $dir . $page;
2737         $pattern['ipdp']  = $http . $ip . $dir . $page;
2738         // Pattern for URLs like http://url/dir
2739         $pattern['d1d']  = $http . $domain1 . $dir;
2740         $pattern['d2d']  = $http . $domain2 . $dir;
2741         $pattern['ipd']  = $http . $ip . $dir;
2742         // Pattern for URLs like http://url/?var=value
2743         $pattern['d1g1']  = $http . $domain1 . '/' . $getstring1;
2744         $pattern['d2g1']  = $http . $domain2 . '/' . $getstring1;
2745         $pattern['ipg1']  = $http . $ip . '/' . $getstring1;
2746         // Pattern for URLs like http://url?var=value
2747         $pattern['d1g12']  = $http . $domain1 . $getstring1;
2748         $pattern['d2g12']  = $http . $domain2 . $getstring1;
2749         $pattern['ipg12']  = $http . $ip . $getstring1;
2750         // Test all patterns
2751         $reg = false;
2752         foreach ($pattern as $key => $pat) {
2753                 // Debug regex?
2754                 if (isDebugRegExpressionEnabled()) {
2755                         // @TODO Are these convertions still required?
2756                         $pat = str_replace('.', "&#92;&#46;", $pat);
2757                         $pat = str_replace('@', "&#92;&#64;", $pat);
2758                         //* DEBUG: */ outputHtml($key."=&nbsp;" . $pat . '<br />');
2759                 } // END - if
2760
2761                 // Check if expression matches
2762                 $reg = ($reg || preg_match(('^' . $pat.'^'), $url));
2763
2764                 // Does it match?
2765                 if ($reg === true) break;
2766         }
2767
2768         // Return true/false
2769         return $reg;
2770 }
2771
2772 // Wtites data to a config.php-style file
2773 // @TODO Rewrite this function to use readFromFile() and writeToFile()
2774 function changeDataInFile ($FQFN, $comment, $prefix, $suffix, $DATA, $seek=0) {
2775         // Initialize some variables
2776         $done = false;
2777         $seek++;
2778         $next  = -1;
2779         $found = false;
2780
2781         // Is the file there and read-/write-able?
2782         if ((isFileReadable($FQFN)) && (is_writeable($FQFN))) {
2783                 $search = 'CFG: ' . $comment;
2784                 $tmp = $FQFN . '.tmp';
2785
2786                 // Open the source file
2787                 $fp = fopen($FQFN, 'r') or outputHtml('<strong>READ:</strong> ' . $FQFN . '<br />');
2788
2789                 // Is the resource valid?
2790                 if (is_resource($fp)) {
2791                         // Open temporary file
2792                         $fp_tmp = fopen($tmp, 'w') or outputHtml('<strong>WRITE:</strong> ' . $tmp . '<br />');
2793
2794                         // Is the resource again valid?
2795                         if (is_resource($fp_tmp)) {
2796                                 // Mark temporary file as readable
2797                                 $GLOBALS['file_readable'][$tmp] = true;
2798
2799                                 // Start reading
2800                                 while (!feof($fp)) {
2801                                         // Read from source file
2802                                         $line = fgets ($fp, 1024);
2803
2804                                         if (strpos($line, $search) > -1) { $next = '0'; $found = true; }
2805
2806                                         if ($next > -1) {
2807                                                 if ($next === $seek) {
2808                                                         $next = -1;
2809                                                         $line = $prefix . $DATA . $suffix . "\n";
2810                                                 } else {
2811                                                         $next++;
2812                                                 }
2813                                         } // END - if
2814
2815                                         // Write to temp file
2816                                         fputs($fp_tmp, $line);
2817                                 } // END - while
2818
2819                                 // Close temp file
2820                                 fclose($fp_tmp);
2821
2822                                 // Finished writing tmp file
2823                                 $done = true;
2824                         } // END - if
2825
2826                         // Close source file
2827                         fclose($fp);
2828
2829                         if (($done === true) && ($found === true)) {
2830                                 // Copy back tmp file and delete tmp :-)
2831                                 copyFileVerified($tmp, $FQFN, 0644);
2832                                 return removeFile($tmp);
2833                         } elseif ($found === false) {
2834                                 outputHtml('<strong>CHANGE:</strong> 404!');
2835                         } else {
2836                                 outputHtml('<strong>TMP:</strong> UNDONE!');
2837                         }
2838                 }
2839         } else {
2840                 // File not found, not readable or writeable
2841                 outputHtml('<strong>404:</strong> ' . $FQFN . '<br />');
2842         }
2843
2844         // An error was detected!
2845         return false;
2846 }
2847 // Send notification to admin
2848 function sendAdminNotification ($subject, $templateName, $content=array(), $userid = '0') {
2849         if ((isExtensionInstalledAndNewer('admins', '0.4.1')) && (function_exists('sendAdminsEmails'))) {
2850                 // Send new way
2851                 sendAdminsEmails($subject, $templateName, $content, $userid);
2852         } else {
2853                 // Send out out-dated way
2854                 $message = loadEmailTemplate($templateName, $content, $userid);
2855                 sendAdminEmails($subject, $message);
2856         }
2857 }
2858
2859 // Debug message logger
2860 function logDebugMessage ($funcFile, $line, $message, $force=true) {
2861         // Is debug mode enabled?
2862         if ((isDebugModeEnabled()) || ($force === true)) {
2863                 // Remove CRLF
2864                 $message = str_replace("\r", '', str_replace("\n", '', $message));
2865
2866                 // Log this message away, we better don't call app_die() here to prevent an endless loop
2867                 $fp = fopen(getConfig('CACHE_PATH') . 'debug.log', 'a') or die(__FUNCTION__.'['.__LINE__.']: Cannot write logfile debug.log!');
2868                 fwrite($fp, date('d.m.Y|H:i:s', time()) . '|' . getModule(false) . '|' . basename($funcFile) . '|' . $line . '|' . $message . "\n");
2869                 fclose($fp);
2870         } // END - if
2871 }
2872
2873 // Handle extra values
2874 function handleExtraValues ($filterFunction, $value, $extraValue) {
2875         // Default is the value itself
2876         $ret = $value;
2877
2878         // Do we have a special filter function?
2879         if (!empty($filterFunction)) {
2880                 // Does the filter function exist?
2881                 if (function_exists($filterFunction)) {
2882                         // Do we have extra parameters here?
2883                         if (!empty($extraValue)) {
2884                                 // Put both parameters in one new array by default
2885                                 $args = array($value, $extraValue);
2886
2887                                 // If we have an array simply use it and pre-extend it with our value
2888                                 if (is_array($extraValue)) {
2889                                         // Make the new args array
2890                                         $args = merge_array(array($value), $extraValue);
2891                                 } // END - if
2892
2893                                 // Call the multi-parameter call-back
2894                                 $ret = call_user_func_array($filterFunction, $args);
2895                         } else {
2896                                 // One parameter call
2897                                 $ret = call_user_func($filterFunction, $value);
2898                         }
2899                 } // END - if
2900         } // END - if
2901
2902         // Return the value
2903         return $ret;
2904 }
2905
2906 // Converts timestamp selections into a timestamp
2907 function convertSelectionsToTimestamp (&$postData, &$DATA, &$id, &$skip) {
2908         // Init test variable
2909         $skip  = false;
2910         $test2 = '';
2911
2912         // Get last three chars
2913         $test = substr($id, -3);
2914
2915         // Improved way of checking! :-)
2916         if (in_array($test, array('_ye', '_mo', '_we', '_da', '_ho', '_mi', '_se'))) {
2917                 // Found a multi-selection for timings?
2918                 $test = substr($id, 0, -3);
2919                 if ((isset($postData[$test.'_ye'])) && (isset($postData[$test.'_mo'])) && (isset($postData[$test.'_we'])) && (isset($postData[$test.'_da'])) && (isset($postData[$test.'_ho'])) && (isset($postData[$test.'_mi'])) && (isset($postData[$test.'_se'])) && ($test != $test2)) {
2920                         // Generate timestamp
2921                         $postData[$test] = createTimestampFromSelections($test, $postData);
2922                         $DATA[] = sprintf("`%s`='%s'", $test, $postData[$test]);
2923                         $GLOBALS['skip_config'][$test] = true;
2924
2925                         // Remove data from array
2926                         foreach (array('ye', 'mo', 'we', 'da', 'ho', 'mi', 'se') as $rem) {
2927                                 unset($postData[$test . '_' . $rem]);
2928                         } // END - foreach
2929
2930                         // Skip adding
2931                         unset($id);
2932                         $skip = true;
2933                         $test2 = $test;
2934                 } // END - if
2935         } // END - if
2936 }
2937
2938 // Reverts the german decimal comma into Computer decimal dot
2939 function convertCommaToDot ($str) {
2940         // Default float is not a float... ;-)
2941         $float = false;
2942
2943         // Which language is selected?
2944         switch (getLanguage()) {
2945                 case 'de': // German language
2946                         // Remove german thousand dots first
2947                         $str = str_replace('.', '', $str);
2948
2949                         // Replace german commata with decimal dot and cast it
2950                         $float = (float)str_replace(',', '.', $str);
2951                         break;
2952
2953                 default: // US and so on
2954                         // Remove thousand dots first and cast
2955                         $float = (float)str_replace(',', '', $str);
2956                         break;
2957         }
2958
2959         // Return float
2960         return $float;
2961 }
2962
2963 // Handle menu-depending failed logins and return the rendered content
2964 function handleLoginFailtures ($accessLevel) {
2965         // Default output is empty ;-)
2966         $OUT = '';
2967
2968         // Is the session data set?
2969         if ((isSessionVariableSet('mxchange_' . $accessLevel.'_failures')) && (isSessionVariableSet('mxchange_' . $accessLevel.'_last_fail'))) {
2970                 // Ignore zero values
2971                 if (getSession('mxchange_' . $accessLevel.'_failures') > 0) {
2972                         // Non-guest has login failures found, get both data and prepare it for template
2973                         //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):accessLevel={$accessLevel}<br />");
2974                         $content = array(
2975                                 'login_failures' => getSession('mxchange_' . $accessLevel.'_failures'),
2976                                 'last_failure'   => generateDateTime(getSession('mxchange_' . $accessLevel.'_last_fail'), 2)
2977                         );
2978
2979                         // Load template
2980                         $OUT = loadTemplate('login_failures', true, $content);
2981                 } // END - if
2982
2983                 // Reset session data
2984                 setSession('mxchange_' . $accessLevel.'_failures', '');
2985                 setSession('mxchange_' . $accessLevel.'_last_fail', '');
2986         } // END - if
2987
2988         // Return rendered content
2989         return $OUT;
2990 }
2991
2992 // Rebuild cache
2993 function rebuildCacheFile ($cache, $inc = '', $force = false) {
2994         // Debug message
2995         /* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, sprintf("cache=%s, inc=%s, force=%s", $cache, $inc, intval($force)));
2996
2997         // Shall I remove the cache file?
2998         if (isCacheInstanceValid()) {
2999                 // Rebuild cache
3000                 if ($GLOBALS['cache_instance']->loadCacheFile($cache)) {
3001                         // Destroy it
3002                         $GLOBALS['cache_instance']->removeCacheFile($force);
3003                 } // END - if
3004
3005                 // Include file given?
3006                 if (!empty($inc)) {
3007                         // Construct FQFN
3008                         $inc = sprintf("inc/loader/load_cache-%s.php", $inc);
3009
3010                         // Is the include there?
3011                         if (isIncludeReadable($inc)) {
3012                                 // And rebuild it from scratch
3013                                 //* DEBUG: */ outputHtml(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): inc={$inc} - LOADED!<br />");
3014                                 loadInclude($inc);
3015                         } else {
3016                                 // Include not found!
3017                                 logDebugMessage(__FUNCTION__, __LINE__, "Include {$inc} not found. cache={$cache}");
3018                         }
3019                 } // END - if
3020         } // END - if
3021 }
3022
3023 // Determines the real remote address
3024 function determineRealRemoteAddress () {
3025         // Is a proxy in use?
3026         if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
3027                 // Proxy was used
3028                 $address = $_SERVER['HTTP_X_FORWARDED_FOR'];
3029         } elseif (isset($_SERVER['HTTP_CLIENT_IP'])) {
3030                 // Yet, another proxy
3031                 $address = $_SERVER['HTTP_CLIENT_IP'];
3032         } else {
3033                 // The regular address when no proxy was used
3034                 $address = $_SERVER['REMOTE_ADDR'];
3035         }
3036
3037         // This strips out the real address from proxy output
3038         if (strstr($address, ',')) {
3039                 $addressArray = explode(',', $address);
3040                 $address = $addressArray[0];
3041         } // END - if
3042
3043         // Return the result
3044         return $address;
3045 }
3046
3047 // Adds a bonus mail to the queue
3048 // This is a high-level function!
3049 function addNewBonusMail ($data, $mode = '', $output=true) {
3050         // Use mode from data if not set and availble ;-)
3051         if ((empty($mode)) && (isset($data['mode']))) $mode = $data['mode'];
3052
3053         // Generate receiver list
3054         $receiver = generateReceiverList($data['cat'], $data['receiver'], $mode);
3055
3056         // Receivers added?
3057         if (!empty($receiver)) {
3058                 // Add bonus mail to queue
3059                 addBonusMailToQueue(
3060                 $data['subject'],
3061                 $data['text'],
3062                 $receiver,
3063                 $data['points'],
3064                 $data['seconds'],
3065                 $data['url'],
3066                 $data['cat'],
3067                 $mode,
3068                 $data['receiver']
3069                 );
3070
3071                 // Mail inserted into bonus pool
3072                 if ($output) loadTemplate('admin_settings_saved', false, getMessage('ADMIN_BONUS_SEND'));
3073         } elseif ($output) {
3074                 // More entered than can be reached!
3075                 loadTemplate('admin_settings_saved', false, getMessage('ADMIN_MORE_SELECTED'));
3076         } else {
3077                 // Debug log
3078                 logDebugMessage(__FUNCTION__, __LINE__, "cat={$data['cat']},receiver={$data['receiver']},data=".base64_encode(serialize($data))." More selected, than available!");
3079         }
3080 }
3081
3082 // Determines referal id and sets it
3083 function determineReferalId () {
3084         // Skip this in non-html-mode and outside ref.php
3085         if ((getOutputMode() != 0) && (basename($_SERVER['PHP_SELF']) != 'ref.php')) return false;
3086
3087         // Check if refid is set
3088         if ((isset($GLOBALS['refid'])) && ($GLOBALS['refid'] > 0)) {
3089                 // This is fine...
3090         } elseif ((isGetRequestElementSet('user')) && (basename($_SERVER['PHP_SELF']) == 'click.php')) {
3091                 // The variable user comes from the click-counter script click.php and we only accept this here
3092                 $GLOBALS['refid'] = bigintval(getRequestElement('user'));
3093         } elseif (isPostRequestElementSet('refid')) {
3094                 // Get referal id from variable refid (so I hope this makes my script more compatible to other scripts)
3095                 $GLOBALS['refid'] = secureString(postRequestElement('refid'));
3096         } elseif (isGetRequestElementSet('refid')) {
3097                 // Get referal id from variable refid (so I hope this makes my script more compatible to other scripts)
3098                 $GLOBALS['refid'] = secureString(getRequestElement('refid'));
3099         } elseif (isGetRequestElementSet('ref')) {
3100                 // Set refid=ref (the referal link uses such variable)
3101                 $GLOBALS['refid'] = secureString(getRequestElement('ref'));
3102         } elseif ((isSessionVariableSet('refid')) && (getSession('refid') != 0)) {
3103                 // Set session refid als global
3104                 $GLOBALS['refid'] = bigintval(getSession('refid'));
3105         } elseif ((isExtensionInstalledAndNewer('user', '0.3.4')) && (getConfig('select_user_zero_refid') == 'Y')) {
3106                 // Select a random user which has confirmed enougth mails
3107                 $GLOBALS['refid'] = determineRandomReferalId();
3108         } elseif ((isExtensionInstalled('sql_patches')) && (getConfig('def_refid') > 0)) {
3109                 // Set default refid as refid in URL
3110                 $GLOBALS['refid'] = getConfig('def_refid');
3111         } else {
3112                 // No default id when sql_patches is not installed or none set
3113                 $GLOBALS['refid'] = '0';
3114         }
3115
3116         // Set cookie when default refid > 0
3117         if (!isSessionVariableSet('refid') || (!empty($GLOBALS['refid'])) || ((getSession('refid') == '0') && (isConfigEntrySet('def_refid')) && (getConfig('def_refid') > 0))) {
3118                 // Default is not found
3119                 $found = false;
3120
3121                 // Do we have nickname or userid set?
3122                 if ((isExtensionActive('nickname')) && (isNicknameUsed($GLOBALS['refid']))) {
3123                         // Nickname in URL, so load the id
3124                         $found = fetchUserData($GLOBALS['refid'], 'nickname');
3125                 } elseif ($GLOBALS['refid'] > 0) {
3126                         // Direct userid entered
3127                         $found = fetchUserData($GLOBALS['refid']);
3128                 }
3129
3130                 // Is the record valid?
3131                 if ((($found === false) || (!isUserDataValid())) && (isConfigEntrySet('def_refid'))) {
3132                         // No, then reset referal id
3133                         $GLOBALS['refid'] = getConfig('def_refid');
3134                 } // END - if
3135
3136                 // Set cookie
3137                 setSession('refid', $GLOBALS['refid']);
3138         } // END - if
3139
3140         // Return determined refid
3141         return $GLOBALS['refid'];
3142 }
3143
3144 // Enables the reset mode and runs it
3145 function doReset () {
3146         // Enable the reset mode
3147         $GLOBALS['reset_enabled'] = true;
3148
3149         // Run filters
3150         runFilterChain('reset');
3151 }
3152
3153 // Our shutdown-function
3154 function shutdown () {
3155         // Call the filter chain 'shutdown'
3156         runFilterChain('shutdown', null);
3157
3158         if (SQL_IS_LINK_UP()) {
3159                 // Close link
3160                 SQL_CLOSE(__FILE__, __LINE__);
3161         } elseif (!isInstallationPhase()) {
3162                 // No database link
3163                 addFatalMessage(__FILE__, __LINE__, getMessage('NO_DB_LINK_SHUTDOWN'));
3164         }
3165
3166         // Stop executing here
3167         exit;
3168 }
3169
3170 // Init member id
3171 function initMemberId () {
3172         $GLOBALS['member_id'] = '0';
3173 }
3174
3175 // Setter for member id
3176 function setMemberId ($memberid) {
3177         // We should not set member id to zero
3178         if ($memberid == '0') debug_report_bug('Userid should not be set zero.');
3179
3180         // Set it secured
3181         $GLOBALS['member_id'] = bigintval($memberid);
3182 }
3183
3184 // Getter for member id or returns zero
3185 function getMemberId () {
3186         // Default member id
3187         $memberid = '0';
3188
3189         // Is the member id set?
3190         if (isMemberIdSet()) {
3191                 // Then use it
3192                 $memberid = $GLOBALS['member_id'];
3193         } // END - if
3194
3195         // Return it
3196         return $memberid;
3197 }
3198
3199 // Checks ether the member id is set
3200 function isMemberIdSet () {
3201         return (isset($GLOBALS['member_id']));
3202 }
3203
3204 // Handle message codes from URL
3205 function handleCodeMessage () {
3206         if (isGetRequestElementSet('code')) {
3207                 // Default extension is 'unknown'
3208                 $ext = 'unknown';
3209
3210                 // Is extension given?
3211                 if (isGetRequestElementSet('ext')) $ext = getRequestElement('ext');
3212
3213                 // Convert the 'code' parameter from URL to a human-readable message
3214                 $message = getMessageFromErrorCode(getRequestElement('code'));
3215
3216                 // Load message template
3217                 loadTemplate('message', false, $message);
3218         } // END - if
3219 }
3220
3221 // Setter for extra title
3222 function setExtraTitle ($extraTitle) {
3223         $GLOBALS['extra_title'] = $extraTitle;
3224 }
3225
3226 // Getter for extra title
3227 function getExtraTitle () {
3228         // Is the extra title set?
3229         if (!isExtraTitleSet()) {
3230                 // No, then abort here
3231                 debug_report_bug('extra_title is not set!');
3232         } // END - if
3233
3234         // Return it
3235         return $GLOBALS['extra_title'];
3236 }
3237
3238 // Checks if the extra title is set
3239 function isExtraTitleSet () {
3240         return ((isset($GLOBALS['extra_title'])) && (!empty($GLOBALS['extra_title'])));
3241 }
3242
3243 // Generates a 'extension foo inactive' message
3244 function generateExtensionInactiveMessage ($ext_name) {
3245         // Is the extension empty?
3246         if (empty($ext_name)) {
3247                 // This should not happen
3248                 debug_report_bug(__FUNCTION__ . ': Parameter ext is empty. This should not happen.');
3249         } // END - if
3250
3251         // Default message
3252         $message = sprintf(getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), $ext_name);
3253
3254         // Is an admin logged in?
3255         if (isAdmin()) {
3256                 // Then output admin message
3257                 $message = sprintf(getMessage('ADMIN_EXTENSION_PROBLEM_EXT_INACTIVE'), $ext_name);
3258         } // END - if
3259
3260         // Return prepared message
3261         return $message;
3262 }
3263
3264 // Generates a 'extension foo not installed' message
3265 function generateExtensionNotInstalledMessage ($ext_name) {
3266         // Is the extension empty?
3267         if (empty($ext_name)) {
3268                 // This should not happen
3269                 debug_report_bug(__FUNCTION__ . ': Parameter ext is empty. This should not happen.');
3270         } // END - if
3271
3272         // Default message
3273         $message = sprintf(getMessage('EXTENSION_PROBLEM_EXT_NOT_INSTALLED'), $ext_name);
3274
3275         // Is an admin logged in?
3276         if (isAdmin()) {
3277                 // Then output admin message
3278                 $message = sprintf(getMessage('ADMIN_EXTENSION_PROBLEM_EXT_NOT_INSTALLED'), $ext_name);
3279         } // END - if
3280
3281         // Return prepared message
3282         return $message;
3283 }
3284
3285 // Generates a message depending on if the extension is not installed or not
3286 // just activated
3287 function generateExtensionInactiveNotInstalledMessage ($ext_name) {
3288         // Init message
3289         $message = '';
3290
3291         // Is the extension not installed or just deactivated?
3292         switch (isExtensionInstalled($ext_name)) {
3293                 case true; // Deactivated!
3294                         $message = generateExtensionInactiveMessage($ext_name);
3295                         break;
3296
3297                 case false; // Not installed!
3298                         $message = generateExtensionNotInstalledMessage($ext_name);
3299                         break;
3300
3301                 default: // Should not happen!
3302                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("Invalid state of extension %s detected.", $ext_name));
3303                         $message = sprintf("Invalid state of extension %s detected.", $ext_name);
3304                         break;
3305         } // END - switch
3306
3307         // Return the message
3308         return $message;
3309 }
3310
3311 // Reads a directory recursively by default and searches for files not matching
3312 // an exclusion pattern. You can now keep the exclusion pattern empty for reading
3313 // a whole directory.
3314 function getArrayFromDirectory ($baseDir, $prefix, $fileIncludeDirs = false, $addBaseDir = true, $excludeArray = array(), $extension = '.php', $excludePattern = '@(\.|\.\.)$@', $recursive = true, $suffix = '') {
3315         // Add default entries we should exclude
3316         $excludeArray[] = '.';
3317         $excludeArray[] = '..';
3318         $excludeArray[] = '.svn';
3319         $excludeArray[] = '.htaccess';
3320
3321         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "baseDir={$baseDir},prefix={$prefix} - Entered!");
3322         // Init includes
3323         $files = array();
3324
3325         // Open directory
3326         $dirPointer = opendir(getConfig('PATH') . $baseDir) or app_die(__FUNCTION__, __LINE__, 'Cannot read directory ' . basename($baseDir) . '.');
3327
3328         // Read all entries
3329         while ($baseFile = readdir($dirPointer)) {
3330                 // Exclude '.', '..' and entries in $excludeArray automatically
3331                 if (in_array($baseFile, $excludeArray, true))  {
3332                         // Exclude them
3333                         //* DEBUG: */ outputHtml('excluded=' . $baseFile . '<br />');
3334                         continue;
3335                 } // END - if
3336
3337                 // Construct include filename and FQFN
3338                 $fileName = $baseDir . $baseFile;
3339                 $FQFN = getConfig('PATH') . $fileName;
3340
3341                 // Remove double slashes
3342                 $FQFN = str_replace('//', '/', $FQFN);
3343
3344                 // Check if the base filenname matches an exclusion pattern and if the pattern is not empty
3345                 if ((!empty($excludePattern)) && (preg_match($excludePattern, $baseFile, $match))) {
3346                         // These Lines are only for debugging!!
3347                         //* DEBUG: */ outputHtml('baseDir:' . $baseDir . '<br />');
3348                         //* DEBUG: */ outputHtml('baseFile:' . $baseFile . '<br />');
3349                         //* DEBUG: */ outputHtml('FQFN:' . $FQFN . '<br />');
3350
3351                         // Exclude this one
3352                         continue;
3353                 } // END - if
3354
3355                 // Skip also files with non-matching prefix genericly
3356                 if (($recursive === true) && (isDirectory($FQFN))) {
3357                         // Is a redirectory so read it as well
3358                         $files = merge_array($files, getArrayFromDirectory($baseDir . $baseFile . '/', $prefix, $fileIncludeDirs, $addBaseDir, $excludeArray, $extension, $excludePattern, $recursive));
3359
3360                         // And skip further processing
3361                         continue;
3362                 } elseif (substr($baseFile, 0, strlen($prefix)) != $prefix) {
3363                         // Skip this file
3364                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "Invalid prefix in file " . $baseFile . ", prefix=" . $prefix);
3365                         continue;
3366                 } elseif ((!empty($suffix)) && (substr($baseFile, -(strlen($suffix . $extension)), (strlen($suffix . $extension))) != $suffix . $extension)) {
3367                         // Skip wrong suffix as well
3368                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "Invalid suffix in file " . $baseFile . ", suffix=" . $suffix);
3369                         continue;
3370                 } elseif (!isFileReadable($FQFN)) {
3371                         // Not readable so skip it
3372                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "File " . $FQFN . " is not readable!");
3373                         continue;
3374                 }
3375
3376                 // Is the file a PHP script or other?
3377                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "baseDir={$baseDir},prefix={$prefix},baseFile={$baseFile}");
3378                 if ((substr($baseFile, -4, 4) == '.php') || (($fileIncludeDirs === true) && (isDirectory($FQFN)))) {
3379                         // Is this a valid include file?
3380                         if ($extension == '.php') {
3381                                 // Remove both for extension name
3382                                 $extName = substr($baseFile, strlen($prefix), -4);
3383
3384                                 // Is the extension valid and active?
3385                                 if (isExtensionNameValid($extName)) {
3386                                         // Then add this file
3387                                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Extension entry ' . $baseFile . ' added.');
3388                                         $files[] = $fileName;
3389                                 } else {
3390                                         // Add non-extension files as well
3391                                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Regular entry ' . $baseFile . ' added.');
3392                                         if ($addBaseDir === true) {
3393                                                 $files[] = $fileName;
3394                                         } else {
3395                                                 $files[] = $baseFile;
3396                                         }
3397                                 }
3398                         } else {
3399                                 // We found .php file but should not search for them, why?
3400                                 debug_report_bug('We should find files with extension=' . $extension . ', but we found a PHP script.');
3401                         }
3402                 } elseif (substr($baseFile, -4, 4) == $extension) {
3403                         // Other, generic file found
3404                         $files[] = $fileName;
3405                 }
3406         } // END - while
3407
3408         // Close directory
3409         closedir($dirPointer);
3410
3411         // Sort array
3412         sort($files);
3413
3414         // Return array with include files
3415         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, '- Left!');
3416         return $files;
3417 }
3418
3419 // Maps a module name into a database table name
3420 function mapModuleToTable ($moduleName) {
3421         // Map only these, still lame code...
3422         switch ($moduleName) {
3423                 // 'index' is the guest's menu
3424                 case 'index': $moduleName = 'guest';  break;
3425                 // ... and 'login' the member's menu
3426                 case 'login': $moduleName = 'member'; break;
3427                 // Anything else will not be mapped, silently.
3428         } // END - switch
3429
3430         // Return result
3431         return $moduleName;
3432 }
3433
3434 // Add SQL debug data to array for later output
3435 function addSqlToDebug ($result, $sqlString, $timing, $F, $L) {
3436         // Already executed?
3437         if (isset($GLOBALS['debug_sqls'][$F][$L][$sqlString])) {
3438                 // Then abort here, we don't need to profile a query twice
3439                 return;
3440         } // END - if
3441
3442         // Remeber this as profiled (or not, but we don't care here)
3443         $GLOBALS['debug_sqls'][$F][$L][$sqlString] = true;
3444
3445         // Do we have cache?
3446         if (!isset($GLOBALS['debug_sql_available'])) {
3447                 // Check it and cache it in $GLOBALS
3448                 $GLOBALS['debug_sql_available'] = ((isConfigurationLoaded()) && (isExtensionInstalledAndNewer('other', '0.2.2')) && (getConfig('display_debug_sqls') == 'Y'));
3449         } // END - if
3450         
3451         // Don't execute anything here if we don't need or ext-other is missing
3452         if ($GLOBALS['debug_sql_available'] === false) {
3453                 return;
3454         } // END - if
3455
3456         // Generate record
3457         $record = array(
3458                 'num_rows' => SQL_NUMROWS($result),
3459                 'affected' => SQL_AFFECTEDROWS(),
3460                 'sql_str'  => $sqlString,
3461                 'timing'   => $timing,
3462                 'file'     => basename($F),
3463                 'line'     => $L
3464         );
3465
3466         // Add it
3467         $GLOBALS['debug_sqls'][] = $record;
3468 }
3469
3470 // Initializes the cache instance
3471 function initCacheInstance () {
3472         // Load include for CacheSystem class
3473         loadIncludeOnce('inc/classes/cachesystem.class.php');
3474
3475         // Initialize cache system only when it's needed
3476         $GLOBALS['cache_instance'] = new CacheSystem();
3477         if ($GLOBALS['cache_instance']->getStatus() != 'done') {
3478                 // Failed to initialize cache sustem
3479                 addFatalMessage(__FILE__, __LINE__, '(<font color="#0000aa">' . __LINE__ . '</font>): ' . getMessage('CACHE_CANNOT_INITIALIZE'));
3480         } // END - if
3481 }
3482
3483 // Getter for message from array or raw message
3484 function getMessageFromIndexedArray ($message, $pos, $array) {
3485         // Check if the requested message was found in array
3486         if (isset($array[$pos])) {
3487                 // ... if yes then use it!
3488                 $ret = $array[$pos];
3489         } else {
3490                 // ... else use default message
3491                 $ret = $message;
3492         }
3493
3494         // Return result
3495         return $ret;
3496 }
3497
3498 // Print code with line numbers
3499 function linenumberCode ($code)    {
3500         if (!is_array($code)) $codeE = explode("\n", $code); else $codeE = $code;
3501         $count_lines = count($codeE);
3502
3503         $r = 'Line | Code:<br />';
3504         foreach($codeE as $line => $c) {
3505                 $r .= '<div class="line"><span class="linenum">';
3506                 if ($count_lines == 1) {
3507                         $r .= 1;
3508                 } else {
3509                         $r .= ($line == ($count_lines - 1)) ? '' :  ($line+1);
3510                 }
3511                 $r .= '</span>|';
3512
3513                 // Add code
3514                 $r .= '<span class="linetext">' . htmlentities($c) . '</span></div>';
3515         }
3516
3517         return '<div class="code">' . $r . '</div>';
3518 }
3519
3520 // Convert ';' to ', ' for e.g. receiver list
3521 function convertReceivers ($old) {
3522         return str_replace(';', ', ', $old);
3523 }
3524
3525 // Determines the right page title
3526 function determinePageTitle () {
3527         // Config and database connection valid?
3528         if ((isConfigLocalLoaded()) && (isConfigurationLoaded()) && (SQL_IS_LINK_UP()) && (isExtensionInstalledAndNewer('sql_patches', '0.1.6'))) {
3529                 // Init title
3530                 $TITLE = '';
3531
3532                 // Title decoration enabled?
3533                 if ((getConfig('enable_title_deco') == 'Y') && (getConfig('title_left') != '')) $TITLE .= trim(getConfig('title_left'))." ";
3534
3535                 // Do we have some extra title?
3536                 if (isExtraTitleSet()) {
3537                         // Then prepent it
3538                         $TITLE .= getExtraTitle() . ' by ';
3539                 } // END - if
3540
3541                 // Add main title
3542                 $TITLE .= getConfig('MAIN_TITLE');
3543
3544                 // Add title of module? (middle decoration will also be added!)
3545                 if ((getConfig('enable_mod_title') == 'Y') || ((!isWhatSet()) && (!isActionSet())) || (getModule() == 'admin')) {
3546                         $TITLE .= ' ' . trim(getConfig('title_middle')) . ' ' . getModuleTitle(getModule());
3547                 } // END - if
3548
3549                 // Add title from what file
3550                 $mode = '';
3551                 if (getModule() == 'login') $mode = 'member';
3552                 elseif (getModule() == 'index') $mode = 'guest';
3553                 if ((!empty($mode)) && (getConfig('enable_what_title') == 'Y')) $TITLE .= ' ' . trim(getConfig('title_middle')) . ' ' . getTitleFromMenu($mode, getWhat());
3554
3555                 // Add title decorations? (right)
3556                 if ((getConfig('enable_title_deco') == 'Y') && (getConfig('title_right') != '')) $TITLE .= ' ' . trim(getConfig('title_right'));
3557
3558                 // Remember title in constant for the template
3559                 $pageTitle = $TITLE;
3560         } elseif ((isInstalled()) && (isAdminRegistered())) {
3561                 // Installed, admin registered but no ext-sql_patches
3562                 $pageTitle = '[-- ' . getConfig('MAIN_TITLE') . ' - ' . getModuleTitle(getModule()) . ' --]';
3563         } elseif ((isInstalled()) && (!isAdminRegistered())) {
3564                 // Installed but no admin registered
3565                 $pageTitle = sprintf(getMessage('SETUP_OF_MXCHANGE'), getConfig('MAIN_TITLE'));
3566         } elseif ((!isInstalled()) || (!isAdminRegistered())) {
3567                 // Installation mode
3568                 $pageTitle = getMessage('INSTALLATION_OF_MXCHANGE');
3569         } else {
3570                 // Configuration not found!
3571                 $pageTitle = getMessage('NO_CONFIG_FOUND_TITLE');
3572
3573                 // Do not add the fatal message in installation mode
3574                 if ((!isInstalling()) && (!isConfigurationLoaded())) addFatalMessage(__FILE__, __LINE__, getMessage('NO_CONFIG_FOUND'));
3575         }
3576
3577         // Return title
3578         return decodeEntities($pageTitle);
3579 }
3580
3581 // Checks wethere there is a cache file there. This function is cached.
3582 function isTemplateCached ($template) {
3583         // Do we have cached this result?
3584         if (!isset($GLOBALS['template_cache'][$template])) {
3585                 // Generate FQFN
3586                 $FQFN = sprintf("%s_compiled/templates/%s.tpl.cache", getConfig('CACHE_PATH'), $template);
3587
3588                 // Is it there?
3589                 $GLOBALS['template_cache'][$template] = isFileReadable($FQFN);
3590         } // END - if
3591
3592         // Return it
3593         return $GLOBALS['template_cache'][$template];
3594 }
3595
3596 // Flushes non-flushed template cache to disk
3597 function flushTemplateCache ($template, $eval) {
3598         // Is this cache flushed?
3599         if ((isDebuggingTemplateCache() === false) && (isTemplateCached($template) === false) && ($eval != '404')) {
3600                 // Generate FQFN
3601                 $FQFN = sprintf("%s_compiled/templates/%s.tpl.cache", getConfig('CACHE_PATH'), $template);
3602
3603                 // Replace username with a call
3604                 $eval = str_replace('$username', '".getUsername()."', $eval);
3605
3606                 // And flush it
3607                 writeToFile($FQFN, $eval, true);
3608         } // END - if
3609 }
3610
3611 // Reads a template cache
3612 function readTemplateCache ($template) {
3613         // Check it again
3614         if ((isDebuggingTemplateCache() === false) && (isTemplateCached($template))) {
3615                 // Generate FQFN
3616                 $FQFN = sprintf("%s_compiled/templates/%s.tpl.cache", getConfig('CACHE_PATH'), $template);
3617
3618                 // And read from it
3619                 $GLOBALS['template_eval'][$template] = readFromFile($FQFN);
3620         } // END - if
3621
3622         // And return it
3623         return $GLOBALS['template_eval'][$template];
3624 }
3625
3626 // Escapes quotes (default is only double-quotes)
3627 function escapeQuotes ($str, $single = false) {
3628         // Should we escape all?
3629         if ($single === true) {
3630                 // Escape all (including null)
3631                 $str = addslashes($str);
3632         } else {
3633                 // Escape only double-quotes but prevent double-quoting
3634                 $str = str_replace("\\\\", "\\", str_replace('"', "\\\"", $str));
3635         }
3636
3637         // Return the escaped string
3638         return $str;
3639 }
3640
3641 // Escapes the JavaScript code, prevents \r and \n becoming char 10/13
3642 function escapeJavaScriptQuotes ($str) {
3643         // Replace all double-quotes and secure back-ticks
3644         $str = str_replace('"', '\"', str_replace("\\", '{BACK}', $str));
3645
3646         // Return it
3647         return $str;
3648 }
3649
3650 // Send out mails depending on the 'mod/modes' combination
3651 // @TODO Lame description for this function
3652 function sendModeMails ($mod, $modes) {
3653         // Load hash
3654         if (fetchUserData(getMemberId())) {
3655                 // Extract salt from cookie
3656                 $salt = substr(getSession('u_hash'), 0, -40);
3657
3658                 // Now let's compare passwords
3659                 $hash = generatePassString(getUserData('password'));
3660
3661                 // Does the hash match or should we change it?
3662                 if (($hash == getSession('u_hash')) || (postRequestElement('pass1') == postRequestElement('pass2'))) {
3663                         // Load the data
3664                         $content = getUserDataArray();
3665
3666                         // Translate gender
3667                         $content['gender'] = translateGender($content['gender']);
3668
3669                         // Clear/init the content variable
3670                         $content['message'] = '';
3671
3672                         // Which mail?
3673                         // @TODO Move this in a filter
3674                         switch ($mod) {
3675                                 case 'mydata':
3676                                         foreach ($modes as $mode) {
3677                                                 switch ($mode) {
3678                                                         case 'normal': break; // Do not add any special lines
3679                                                         case 'email': // Email was changed!
3680                                                                 $content['message'] = getMessage('MEMBER_CHANGED_EMAIL').": ".postRequestElement('old_email')."\n";
3681                                                                 break;
3682
3683                                                         case 'pass': // Password was changed
3684                                                                 $content['message'] = getMessage('MEMBER_CHANGED_PASS')."\n";
3685                                                                 break;
3686
3687                                                         default:
3688                                                                 logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown mode %s detected.", $mode));
3689                                                                 $content['message'] = getMessage('MEMBER_UNKNOWN_MODE') . ': ' . $mode . "\n\n";
3690                                                                 break;
3691                                                 } // END - switch
3692                                         } // END - foreach
3693
3694                                         if (isExtensionActive('country')) {
3695                                                 // Replace code with description
3696                                                 $content['country'] = generateCountryInfo(postRequestElement('country_code'));
3697                                         } // END - if
3698
3699                                         // Merge content with data from POST
3700                                         $content = merge_array($content, postRequestArray());
3701
3702                                         // Load template
3703                                         $message = loadEmailTemplate('member_mydata_notify', $content, getMemberId());
3704
3705                                         if (getConfig('admin_notify') == 'Y') {
3706                                                 // The admin needs to be notified about a profile change
3707                                                 $message_admin = 'admin_mydata_notify';
3708                                                 $sub_adm   = getMessage('ADMIN_CHANGED_DATA');
3709                                         } else {
3710                                                 // No mail to admin
3711                                                 $message_admin = '';
3712                                                 $sub_adm   = '';
3713                                         }
3714
3715                                         // Set subject lines
3716                                         $sub_mem = getMessage('MEMBER_CHANGED_DATA');
3717
3718                                         // Output success message
3719                                         $content = "<span class=\"member_done\">{--MYDATA_MAIL_SENT--}</span>";
3720                                         break;
3721
3722                                 default: // Unsupported module!
3723                                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unsupported module %s detected.", $mod));
3724                                         $content = "<span class=\"member_failed\">{--UNKNOWN_MODULE--}</span>";
3725                                         break;
3726                         } // END - switch
3727                 } else {
3728                         // Passwords mismatch
3729                         $content = "<span class=\"member_failed\">{--MEMBER_PASSWORD_ERROR--}</span>";
3730                 }
3731         } else {
3732                 // Could not load profile
3733                 $content = "<span class=\"member_failed\">{--MEMBER_CANNOT_LOAD_PROFILE--}</span>";
3734         }
3735
3736         // Send email to user if required
3737         if ((!empty($sub_mem)) && (!empty($message))) {
3738                 // Send member mail
3739                 sendEmail($content['email'], $sub_mem, $message);
3740         } // END - if
3741
3742         // Send only if no other error has occured
3743         if (empty($content)) {
3744                 if ((!empty($sub_adm)) && (!empty($message_admin))) {
3745                         // Send admin mail
3746                         sendAdminNotification($sub_adm, $message_admin, $content, getMemberId());
3747                 } elseif (getConfig('admin_notify') == 'Y') {
3748                         // Cannot send mails to admin!
3749                         $content = getMessage('CANNOT_SEND_ADMIN_MAILS');
3750                 } else {
3751                         // No mail to admin
3752                         $content = "<span class=\"member_done\">{--MYDATA_MAIL_SENT--}</span>";
3753                 }
3754         } // END - if
3755
3756         // Load template
3757         loadTemplate('admin_settings_saved', false, $content);
3758 }
3759
3760 // Generates a 'selection box' from given array
3761 function generateSelectionBoxFromArray ($options, $name, $optionValue, $optionContent) {
3762         // Start the output
3763         $OUT = '<select name="' . $name . '" size="1" class="admin_select">
3764 <option value="X" disabled="disabled">{--PLEASE_SELECT--}</option>';
3765
3766         // Walk through all options
3767         foreach ($options as $option) {
3768                 // Add the <option> entry
3769                 $OUT .= '<option value="' . $option[$optionValue] . '">' . $option[$optionContent] . '</option>';
3770         } // END - foreach
3771
3772         // Finish selection box
3773         $OUT .= '</select>';
3774
3775         // Prepare output
3776         $content = array(
3777                 'selection_box' => $OUT,
3778                 'module'        => getModule(),
3779                 'what'          => getWhat()
3780         );
3781
3782         // Load template and return it
3783         return loadTemplate('select_' . $name . '_box', true, $content);
3784 }
3785
3786 // Get a module from filename and access level
3787 function getModuleFromFileName ($file, $accessLevel) {
3788         // Default is 'invalid';
3789         $modCheck = 'invalid';
3790
3791         // @TODO This is still very static, rewrite it somehow
3792         switch ($accessLevel) {
3793                 case 'admin':
3794                         $modCheck = 'admin';
3795                         break;
3796
3797                 case 'sponsor':
3798                 case 'guest':
3799                 case 'member':
3800                         $modCheck = getModule();
3801                         break;
3802
3803                 default: // Unsupported file name / access level
3804                         debug_report_bug('Unsupported file name=' . basename($file) . '/access level=' . $accessLevel);
3805                         break;
3806         }
3807
3808         // Return result
3809         return $modCheck;
3810 }
3811
3812 // Encodes an URL for adding session id, etc.
3813 function encodeUrl ($url, $outputMode = '0') {
3814         // Do we have already have a PHPSESSID inside? Then it is already converted...
3815         if (strpos($url, session_name()) !== false) return $url;
3816
3817         // Do we have a valid session?
3818         if ((($GLOBALS['valid_session'] === false) || (!isset($_COOKIE[session_name()]))) && (isSpider() === false)) {
3819                 // Invalid session
3820                 // Determine right seperator
3821                 $seperator = '&amp;';
3822                 if (strpos($url, '?') === false) {
3823                         // No question mark
3824                         $seperator = '?';
3825                 } elseif ((getOutputMode() != '0') || ($outputMode != '0')) {
3826                         // Non-HTML mode
3827                         $seperator = '&';
3828                 }
3829
3830                 // Add it to URL
3831                 if (session_id() != '') {
3832                         $url .= $seperator . session_name() . '=' . session_id();
3833                 } // END - if
3834         } // END - if
3835
3836         // Add {?URL?} ?
3837         if ((substr($url, 0, strlen(getConfig('URL'))) != getConfig('URL')) && (substr($url, 0, 7) != '{?URL?}') && (substr($url, 0, 7) != 'http://') && (substr($url, 0, 8) != 'https://')) {
3838                 // Add it
3839                 $url = '{?URL?}/' . $url;
3840         } // END - if
3841
3842         // Return the URL
3843         return $url;
3844 }
3845
3846 // Simple check for spider
3847 function isSpider () {
3848         // Get the UA
3849         $userAgent = strtolower(detectUserAgent(true));
3850
3851         // It should not be empty, if so it is better a spider/bot
3852         if (empty($userAgent)) return true;
3853
3854         // Is it a spider?
3855         return ((strpos($userAgent, 'spider') !== false) || (strpos($userAgent, 'slurp') !== false) || (strpos($userAgent, 'bot') !== false));
3856 }
3857
3858 //////////////////////////////////////////////////
3859 // AUTOMATICALLY RE-GENERATED MISSING FUNCTIONS //
3860 //////////////////////////////////////////////////
3861 //
3862 if (!function_exists('html_entity_decode')) {
3863         // Taken from documentation on www.php.net
3864         function html_entity_decode ($string) {
3865                 $trans_tbl = get_html_translation_table(HTML_ENTITIES);
3866                 $trans_tbl = array_flip($trans_tbl);
3867                 return strtr($string, $trans_tbl);
3868         }
3869 } // END - if
3870
3871 if (!function_exists('http_build_query')) {
3872         // Taken from documentation on www.php.net, credits to Marco K. (Germany)
3873         function http_build_query($data, $prefix = '', $sep = '', $key = '') {
3874                 $ret = array();
3875                 foreach ((array)$data as $k => $v) {
3876                         if (is_int($k) && $prefix != null) {
3877                                 $k = urlencode($prefix . $k);
3878                         } // END - if
3879
3880                         if ((!empty($key)) || ($key === 0))  $k = $key.'['.urlencode($k).']';
3881
3882                         if (is_array($v) || is_object($v)) {
3883                                 array_push($ret, http_build_query($v, '', $sep, $k));
3884                         } else {
3885                                 array_push($ret, $k.'='.urlencode($v));
3886                         }
3887                 } // END - foreach
3888
3889                 if (empty($sep)) $sep = ini_get('arg_separator.output');
3890
3891                 return implode($sep, $ret);
3892         }
3893 } // END - if
3894
3895 // [EOF]
3896 ?>