Several fixes for module/action/what handling.
[mailer.git] / inc / mysql-manager.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 08/26/2003 *
4  * ===================                          Last change: 11/29/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : mysql-manager.php                                *
8  * -------------------------------------------------------------------- *
9  * Short description : All MySQL-related functions                      *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Alle MySQL-Relevanten Funktionen                 *
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 // "Getter" for module title
45 function getModuleTitle ($mod) {
46         // Init variables
47         $title = '';
48         $result = false;
49
50         // Is the script installed?
51         if (isInstalled()) {
52                 // Check if cache is valid
53                 if ((isExtensionInstalledAndNewer('cache', '0.1.2')) && (isset($GLOBALS['cache_array']['modules']['module'])) && (in_array($mod, $GLOBALS['cache_array']['modules']['module']))) {
54                         // Load from cache
55                         $title = $GLOBALS['cache_array']['modules']['title'][$mod];
56
57                         // Update cache hits
58                         incrementStatsEntry('cache_hits');
59                 } elseif (!isExtensionActive('cache')) {
60                         // Load from database
61                         $result = SQL_QUERY_ESC("SELECT `title` FROM `{?_MYSQL_PREFIX?}_mod_reg` WHERE `module`='%s' LIMIT 1",
62                                 array($mod), __FUNCTION__, __LINE__);
63
64                         // Is the entry there?
65                         if (SQL_NUMROWS($result)) {
66                                 // Get the title from database
67                                 list($title) = SQL_FETCHROW($result);
68                         } // END - if
69
70                         // Free the result
71                         SQL_FREERESULT($result);
72                 }
73         } // END - if
74
75         // Trim name
76         $title = trim($title);
77
78         // Still no luck or empty title?
79         if (empty($title)) {
80                 // No name found
81                 $title = sprintf("%s (%s)", getMessage('LANG_UNKNOWN_MODULE'), $mod);
82                 if (SQL_NUMROWS($result) == '0') {
83                         // Add module to database
84                         $dummy = checkModulePermissions($mod);
85                 } // END - if
86         } // END - if
87
88         // Return name
89         return $title;
90 }
91
92 // "Getter" for module description
93 // @TODO Can we cache this?
94 function getModuleDescription ($mode, $what, $column = 'what') {
95         // Fix empty 'what'
96         if (empty($what)) {
97                 $what = getConfig('index_home');
98         } // END - if
99
100         // Default is not found
101         $ret = '??? (' . $what . ')';
102
103         // Look for title
104         $result = SQL_QUERY_ESC("SELECT `title` FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE %s='%s' LIMIT 1",
105                 array($mode, $column, $what), __FUNCTION__, __LINE__);
106
107         // Is there an entry?
108         if (SQL_NUMROWS($result) == 1) {
109                 // Fetch the title
110                 list($ret) = SQL_FETCHROW($result);
111         } // END - if
112
113         // Free result
114         SQL_FREERESULT($result);
115
116         // Return it
117         return $ret;
118 }
119
120 // Check validity of a given module name (no file extension)
121 function checkModulePermissions ($mod = '') {
122         // Is it empty (default), then take the current one
123         if (empty($mod)) $mod = getModule();
124
125         // Do we have cache?
126         if (isset($GLOBALS['module_status'][$mod])) {
127                 // Then use it
128                 return $GLOBALS['module_status'][$mod];
129         } // END - if
130
131         // Filter module name (names with low chars and underlines are fine!)
132         $mod = preg_replace('/[^a-z_]/', '', $mod);
133
134         // Check for prefix is a extension...
135         $modSplit = explode('_', $mod);
136         $extension = ''; $mod_chk = $mod;
137         //* DEBUG: */ print(__LINE__."*".count($modSplit)."*/".$mod."*<br />");
138         if (count($modSplit) == 2) {
139                 // Okay, there is a seperator (_) in the name so is the first part a module?
140                 //* DEBUG: */ print(__LINE__."*".$modSplit[0]."*<br />");
141                 if (isExtensionActive($modSplit[0])) {
142                         // The prefix is an extension's name, so let's set it
143                         $extension = $modSplit[0]; $mod = $modSplit[1];
144                 } // END - if
145         } // END - if
146
147         // Major error in module registry is the default
148         $ret = 'major';
149
150         // Check if script is installed if not return a 'done' to prevent some errors
151         if ((isInstallationPhase()) || (!isAdminRegistered())) {
152                 // Not installed or no admin registered or in installation phase
153                 return 'done';
154         } // END - if
155
156         // Init variables
157         $locked = 'Y';
158         $hidden = 'N';
159         $admin  = 'N';
160         $mem    = 'N';
161         $found  = false;
162
163         // Check if cache is latest version
164         if (isExtensionInstalledAndNewer('cache', '0.1.2')) {
165                 // Is the cache there?
166                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Using cache.');
167                 if (isset($GLOBALS['cache_array']['modules']['locked'][$mod_chk])) {
168                         // Check cache
169                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Cache found.');
170                         $locked = $GLOBALS['cache_array']['modules']['locked'][$mod_chk];
171                         $hidden = $GLOBALS['cache_array']['modules']['hidden'][$mod_chk];
172                         $admin  = $GLOBALS['cache_array']['modules']['admin_only'][$mod_chk];
173                         $mem    = $GLOBALS['cache_array']['modules']['mem_only'][$mod_chk];
174
175                         // Update cache hits
176                         incrementStatsEntry('cache_hits');
177                         $found = true;
178                 } else {
179                         // No, then we have to update it!
180                         $ret = 'cache_miss';
181                 }
182         } elseif (!isExtensionActive('cache')) {
183                 // Check for module in database
184                 //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Using database.');
185                 $result = SQL_QUERY_ESC("SELECT `locked`, `hidden`, `admin_only`, `mem_only` FROM `{?_MYSQL_PREFIX?}_mod_reg` WHERE `module`='%s' LIMIT 1",
186                         array($mod_chk), __FUNCTION__, __LINE__);
187                 if (SQL_NUMROWS($result) == 1) {
188                         // Read data
189                         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Entry found.');
190                         list($locked, $hidden, $admin, $mem) = SQL_FETCHROW($result);
191                         $found = true;
192                 } elseif (isDebugModeEnabled()) {
193                         // Debug message only in debug-mode...
194                         logDebugMessage(__FUNCTION__, __LINE__, 'Module ' . $mod_chk . ' not found!');
195                 }
196
197                 // Free result
198                 SQL_FREERESULT($result);
199         }
200         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'ret=' . $ret);
201
202         // Is the module found?
203         if ($found === true) {
204                 // Check returned values against current access permissions
205                 //
206                 //  Admin access            ----- Guest access -----           --- Guest   or   member? ---
207                 if ((isAdmin()) || (($locked != 'Y') && ($admin != 'Y') && (($mem != 'Y') || (isMember())))) {
208                         // If you are admin you are welcome for everything!
209                         $ret = 'done';
210                 } elseif ($locked == 'Y') {
211                         // Module is locked
212                         $ret = 'locked';
213                 } elseif (($mem == 'Y') && (!isMember())) {
214                         // You have to login first!
215                         $ret = 'mem_only';
216                 } elseif (($admin == 'Y') && (!isAdmin())) {
217                         // Only the Admin is allowed to enter this module!
218                         $ret = 'admin_only';
219                 } else {
220                         // @TODO Nothing helped???
221                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("ret=%s,locked=%s,admin=%s,mem=%s",
222                                 $ret,
223                                 $locked,
224                                 $admin,
225                                 $mem
226                         ));
227                 }
228         } // END - if
229
230         // Still no luck or not found?
231         if (($found === false) && (!isExtensionActive('cache')) && ($ret != 'done'))  {
232                 //              ----- Legacy module -----                                               ---- Module in base folder  ----                       --- Module with extension's name ---
233                 if ((isIncludeReadable(sprintf("inc/modules/%s.php", $mod))) || (isIncludeReadable(sprintf("%s.php", $mod))) || (isIncludeReadable(sprintf("%s/%s.php", $extension, $mod)))) {
234                         // Data is missing so we add it
235                         if (isExtensionInstalledAndNewer('sql_patches', '0.3.6')) {
236                                 // Since 0.3.6 we have a has_menu column, this took me a half hour
237                                 // to find a loop here... *sigh*
238                                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_mod_reg`
239 (`module`, `locked`, `hidden`, `mem_only`, `admin_only`, `has_menu`) VALUES
240 ('%s','Y','N','N','N','N')", array($mod_chk), __FUNCTION__, __LINE__);
241                         } else {
242                                 // Wrong/missing sql_patches!
243                                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_mod_reg`
244 (`module`, `locked`, `hidden`, `mem_only`, `admin_only`) VALUES
245 ('%s','Y','N','N','N')", array($mod_chk), __FUNCTION__, __LINE__);
246                         }
247
248                         // Everthing is fine?
249                         if (SQL_AFFECTEDROWS() < 1) {
250                                 // Something bad happend!
251                                 return 'major';
252                         } // END - if
253
254                         // Destroy cache here
255                         // @TODO Rewrite this to a filter
256                         if ((getOutputMode() == '0') || (getOutputMode() == -1)) rebuildCacheFile('modules', 'modules');
257
258                         // And reload data
259                         unset($GLOBALS['module_status'][$mod]);
260                         $ret = checkModulePermissions($mod_chk);
261                 } else {
262                         // Module not found we don't add it to the database
263                         $ret = '404';
264                 }
265         } elseif (($ret == 'cache_miss') && (getOutputMode() == '0')) {
266                 // Rebuild the cache files
267                 rebuildCacheFile('modules', 'modules');
268         } elseif ($found === false) {
269                 // Problem with module detected
270                 logDebugMessage(__FUNCTION__, __LINE__, sprintf("Problem in module %s detected. ret=%s, locked=%s, hidden=%s, mem=%s, admin=%s, output_mode=%s",
271                         $mod,
272                         $ret,
273                         $locked,
274                         $hidden,
275                         $mem,
276                         $admin,
277                         getOutputMode()
278                 ));
279         }
280
281         // Return the value
282         //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'ret=' . $ret);
283         $GLOBALS['module_status'][$mod] = $ret;
284         return $ret;
285 }
286
287 // Add menu description pending on given file name (without path!)
288 function addMenuDescription ($accessLevel, $FQFN, $return = false, $output = true) {
289         // Use only filename of the FQFN...
290         $file = basename($FQFN);
291
292         // Init variables
293         $LINK_ADD = '';
294         $OUT = '';
295         $AND = '';
296
297         // First we have to do some analysis...
298         if (substr($file, 0, 7) == 'action-') {
299                 // This is an action file!
300                 $type = 'action';
301                 $search = substr($file, 7);
302                 switch ($accessLevel) {
303                         case 'admin':
304                                 $modCheck = 'admin';
305                                 break;
306
307                         case 'sponsor':
308                         case 'guest':
309                         case 'member':
310                                 $modCheck = getModule();
311                                 break;
312                 }
313                 $AND = " AND (`what`='' OR `what` IS NULL)";
314         } elseif (substr($file, 0, 5) == 'what-') {
315                 // This is an admin what file!
316                 $type = 'what';
317                 $search = substr($file, 5);
318                 $AND = '';
319                 switch ($accessLevel) {
320                         case 'admin':
321                                 $modCheck = 'admin';
322                                 break;
323
324                         case 'guest':
325                         case 'member':
326                                 $modCheck = getModule();
327                                 if (!isAdmin()) {
328                                         $AND = " AND `visible`='Y' AND `locked`='N'";
329                                 }
330                                 break;
331                 }
332
333                 $dummy = substr($search, 0, -4);
334                 $AND .= " AND `action`='".getModeAction($accessLevel, $dummy)."'";
335         } elseif (($accessLevel == 'sponsor') || ($accessLevel == "engine")) {
336                 // Sponsor / engine menu
337                 $type     = 'what';
338                 $search   = $file;
339                 $modCheck = getModule();
340                 $AND      = '';
341         } else {
342                 // Other
343                 $type     = 'menu';
344                 $search   = $file;
345                 $modCheck = getModule();
346                 $AND      = '';
347         }
348
349         // Begin the navigation line
350         if ((!isset($GLOBALS['nav_depth'])) && ($return === false)) {
351                 $GLOBALS['nav_depth'] = '0';
352                 $prefix = "<div class=\"you_are_here\">{--YOU_ARE_HERE--}&nbsp;<strong><a class=\"you_are_here\" href=\"{?URL?}/modules.php?module=".getModule().$LINK_ADD."\">Home</a></strong>";
353         } else {
354                 if ($return === false) $GLOBALS['nav_depth']++;
355                 $prefix = '';
356         }
357
358         $prefix .= '&nbsp;-&gt;&nbsp;';
359
360         // We need to remove .php and the end
361         if (substr($search, -4, 4) == '.php') {
362                 // Remove the .php
363                 $search = substr($search, 0, -4);
364         } // END - i
365
366         // Get the title from menu
367         $result = SQL_QUERY_ESC("SELECT title FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE %s='%s' ".$AND." LIMIT 1",
368         array($accessLevel, $type, $search), __FUNCTION__, __LINE__);
369
370         // Menu found?
371         if (SQL_NUMROWS($result) == 1) {
372                 // Load title
373                 list($ret) = SQL_FETCHROW($result);
374
375                 // Shall we return it?
376                 if ($return === true) {
377                         // Return title
378                         return $ret;
379                 } elseif (((isExtensionInstalledAndNewer('sql_patches', '0.2.3')) && (getConfig('youre_here') == 'Y')) || ((isAdmin()) && ($modCheck == 'admin'))) {
380                         // Output HTML code
381                         $OUT = $prefix . "<strong><a class=\"you_are_here\" href=\"{?URL?}/modules.php?module=" . $modCheck . '&amp;' . $type . '=' . $search.$LINK_ADD . "\">" . $ret . "</a></strong>\n";
382
383                         // Can we close the you-are-here navigation?
384                         //* DEBUG: */ print(__LINE__."*".$type.'/'.getWhat()."*<br />");
385                         if (($type == 'what') || (($type == 'action') && ((!isWhatSet()) || (getWhat() == 'overview')))) {
386                                 //* DEBUG: */ print(__LINE__.'+'.$type."+<br />");
387                                 // Add closing div and br-tag
388                                 $OUT .= "</div><br />\n";
389                                 $GLOBALS['nav_depth'] = '0';
390
391                                 // Run the filter chain
392                                 $ret = runFilterChain('post_youhere_line', array('access_level' => $accessLevel, 'type' => $type, 'content' => ""));
393                                 $OUT .= $ret['content'];
394                         } // END - if
395                 }
396         } // END - if
397
398         // Free result
399         SQL_FREERESULT($result);
400
401         // Return or output HTML code?
402         if ($output) {
403                 // Output HTML code here
404                 outputHtml($OUT);
405         } else {
406                 // Return HTML code
407                 return $OUT;
408         }
409 }
410
411 // Adds a menu (mode = guest/member/admin/sponsor) to output
412 function addMenu ($mode, $action, $what) {
413         // Init some variables
414         $main_cnt = '0';
415         $AND = '';
416
417         // is the menu action valid?
418         if (!isMenuActionValid($mode, $action, $what, true)) {
419                 return getCode('MENU_NOT_VALID');
420         } // END - if
421
422         // Non-admin shall not see all menus
423         if (!isAdmin()) {
424                 $AND = " AND `visible`='Y' AND `locked`='N'";
425         } // END - if
426
427         // Load SQL data and add the menu to the output stream...
428         $result_main = SQL_QUERY_ESC("SELECT `title`, `action` FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE (`what`='' OR `what` IS NULL)".$AND." ORDER BY `sort` ASC",
429                 array($mode), __FUNCTION__, __LINE__);
430
431         //* DEBUG: */ print(__LINE__.'/'.$main_cnt.':'.getWhat()."*<br />");
432         if (SQL_NUMROWS($result_main) > 0) {
433                 // There are menus available, so we simply display them... :)
434                 $GLOBALS['rows'] = '';
435                 while ($content = SQL_FETCHARRAY($result_main)) {
436                         //* DEBUG: */ print(__LINE__.'/'.$main_cnt.'/'.$content['action'].':'.getWhat()."*<br />");
437                         // Init variables
438                         enableBlockMode(false);
439                         $action = $content['action'];
440
441                         // Load menu header template
442                         $GLOBALS['rows'] .= loadTemplate($mode . '_menu_title', true, $content);
443
444                         // Sub menu
445                         $result_sub = SQL_QUERY_ESC("SELECT `title` AS sub_title, `what` AS sub_what FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE `action`='%s' AND `what` != '' AND `what` IS NOT NULL ".$AND." ORDER BY `sort`",
446                                 array($mode, $content['action']), __FUNCTION__, __LINE__);
447
448                         // Get number of rows
449                         $totalWhats = SQL_NUMROWS($result_sub);
450
451                         // Do we have some entries?
452                         if ($totalWhats > 0) {
453                                 // Init counter
454                                 $cnt = '0';
455
456                                 // Load all sub menus
457                                 while ($content2 = SQL_FETCHARRAY($result_sub)) {
458                                         // Merge both arrays in one
459                                         $content = merge_array($content, $content2);
460
461                                         // Init content
462                                         $OUT = '';
463
464                                         // Full file name for checking menu
465                                         //* DEBUG: */ print(__LINE__.":!!!!".$content['sub_what']."!!!<br />");
466                                         $inc = sprintf("inc/modules/%s/what-%s.php", $mode, $content['sub_what']);
467                                         if (isIncludeReadable($inc)) {
468                                                 // Mark currently selected menu - open
469                                                 if ((!empty($what)) && (($what == $content['sub_what']))) {
470                                                         $OUT = "<strong>";
471                                                 } // END - if
472
473                                                 // Navigation link
474                                                 $OUT .= "<a name=\"menu\" class=\"menu_blur\" href=\"{?URL?}/modules.php?module=".getModule()."&amp;what=".$content['sub_what']."\" target=\"_self\">";
475                                         } else {
476                                                 // Not found! - open
477                                                 $OUT .= "<em style=\"cursor:help\" class=\"admin_note\" title=\"{--MENU_WHAT_404--}\">";
478                                         }
479
480                                         // Menu title
481                                         $OUT .= getConfig('menu_blur_spacer') . $content['sub_title'];
482
483                                         if (isIncludeReadable($inc)) {
484                                                 $OUT .= "</a>";
485
486                                                 // Mark currently selected menu - close
487                                                 if ((!empty($what)) && (($what == $content['sub_what']))) {
488                                                         $OUT .= "</strong>";
489                                                 } // END - if
490                                         } else {
491                                                 // Not found! - close
492                                                 $OUT .= "</em>";
493                                         }
494
495                                         // Cunt it up
496                                         $cnt++;
497
498                                         // Rewrite array
499                                         $content =  array(
500                                                 'menu' => $OUT,
501                                                 'what' => $content['sub_what']
502                                         );
503
504                                         // Add regular menu row or bottom row?
505                                         if ($cnt < $totalWhats) {
506                                                 $GLOBALS['rows'] .= loadTemplate($mode . '_menu_row', true, $content);
507                                         } else {
508                                                 $GLOBALS['rows'] .= loadTemplate($mode . '_menu_bottom', true, $content);
509                                         }
510                                 }
511                         } else {
512                                 // This is a menu block... ;-)
513                                 enableBlockMode();
514
515                                 // Load menu block
516                                 $INC = sprintf("inc/modules/%s/action-%s.php", $mode, $content['action']);
517                                 if (isFileReadable($INC)) {
518                                         // Load include file
519                                         if ((!isExtensionActive($content['action'])) || ($content['action'] == 'online')) $GLOBALS['rows'] .= loadTemplate('menu_what_begin', true, $mode);
520                                         //* DEBUG: */ print(__LINE__.'/'.$main_cnt.'/'.$content['action'].'/'.getWhat()."*<br />");
521                                         loadInclude($INC);
522                                         //* DEBUG: */ print(__LINE__.'/'.$main_cnt.'/'.$content['action'].'/'.getWhat()."*<br />");
523                                         if ((!isExtensionActive($content['action'])) || ($content['action'] == 'online')) $GLOBALS['rows'] .= loadTemplate('menu_what_end', true, $mode);
524                                 }
525                                 //* DEBUG: */ print(__LINE__.'/'.$main_cnt.'/'.$content['action'].'/'.$content['sub_what'].':'.getWhat()."*<br />");
526                         }
527
528                         $main_cnt++;
529
530                         //* DEBUG: */ print(__LINE__.'/'.$main_cnt.':'.getWhat()."*<br />");
531                         if (SQL_NUMROWS($result_main) > $main_cnt) {
532                                 // Add seperator
533                                 $GLOBALS['rows'] .= loadTemplate('menu_seperator', true, $mode);
534
535                                 // Should we display adverts in this menu?
536                                 if ((isExtensionInstalledAndNewer('menu', '0.0.1')) && (getConfig($mode . '_menu_advert_enabled') == 'Y') && ($action != 'admin')) {
537                                         // Display advert template
538                                         $GLOBALS['rows'] .= loadTemplate('menu_' . $mode . '_advert_' . $action, true);
539
540                                         // Add seperator again
541                                         $GLOBALS['rows'] .= loadTemplate('menu_seperator', true, $mode);
542                                 } // END - if
543                         } // END - if
544                 } // END - while
545
546                 // Free memory
547                 SQL_FREERESULT($result_main);
548
549                 // Should we display adverts in this menu?
550                 if ((isExtensionInstalledAndNewer('menu', '0.0.1')) && (getConfig($mode . '_menu_advert_enabled') == 'Y')) {
551                         // Add seperator again
552                         $GLOBALS['rows'] .= loadTemplate('menu_seperator', true, $mode);
553
554                         // Display advert template
555                         $GLOBALS['rows'] .= loadTemplate('menu_' . $mode . '_advert_end', true);
556                 } // END - if
557
558                 // Prepare data
559                 $content = array(
560                         'rows' => $GLOBALS['rows'],
561                         'mode' => $mode
562                 );
563
564                 // Load main template
565                 //* DEBUG: */ print(__LINE__.'/'.$main_cnt.'/'.$content['action'].'/'.$content['sub_what'].':'.getWhat()."*<br />");
566                 loadTemplate('menu_table', false, $content);
567         } // END - if
568 }
569
570 // Checks wether the current user is a member
571 function isMember () {
572         // By default no member
573         $ret = false;
574
575         // Fix missing 'last_online' array, damn stupid code :(((
576         // @TODO Try to rewrite this to one or more functions
577         if ((!isset($GLOBALS['last_online'])) || (!is_array($GLOBALS['last_online']))) $GLOBALS['last_online'] = array();
578
579         // is the cache entry there?
580         if (isset($GLOBALS['is_member'])) {
581                 // Then return it
582                 return $GLOBALS['is_member'];
583         } elseif (getMemberId() == '0') {
584                 // No member
585                 return false;
586         } else {
587                 // Transfer userid=>current
588                 setCurrentUserid(getMemberId());
589         }
590
591         // Init global user data array
592         initUserData();
593
594         // Fix "deleted" cookies first
595         fixDeletedCookies(array('userid', 'u_hash'));
596
597         // Are cookies set?
598         if ((isMemberIdSet()) && (isSessionVariableSet('u_hash'))) {
599                 // Cookies are set with values, but are they valid?
600                 if (fetchUserData(getMemberId()) === true) {
601                         // Validate password by created the difference of it and the secret key
602                         $valPass = generatePassString(getUserData('password'));
603
604                         // Transfer last module and online time
605                         $GLOBALS['last_online']['module'] = getUserData('last_module');
606                         $GLOBALS['last_online']['online'] = getUserData('last_online');
607
608                         // So did we now have valid data and an unlocked user?
609                         if ((getUserData('status') == 'CONFIRMED') && ($valPass == getSession('u_hash'))) {
610                                 // Account is confirmed and all cookie data is valid so he is definely logged in! :-)
611                                 $ret = true;
612                         } else {
613                                 // Maybe got locked etc.
614                                 logDebugMessage(__FUNCTION__, __LINE__, 'status=' . getUserData('status'));
615                                 destroyMemberSession();
616                         }
617                 } else {
618                         // Cookie data is invalid!
619                         destroyMemberSession();
620                 }
621         } else {
622                 // Cookie data is invalid!
623                 destroyMemberSession();
624         }
625
626         // Cache status
627         $GLOBALS['is_member'] = $ret;
628
629         // Return status
630         return $ret;
631 }
632
633 // Fetch user data for given user id
634 function fetchUserData ($userid, $column='userid') {
635         // If we should look for userid secure&set it here
636         if (substr($column, -2, 2) == 'id') {
637                 // Secure userid
638                 $userid = bigintval($userid);
639
640                 // Set it here
641                 setCurrentUserId($userid);
642
643                 // Don't look for invalid userids...
644                 if ($userid < 1) {
645                         // Invalid, so abort here
646                         debug_report_bug('User id ' . $userid . ' is invalid.');
647                 } elseif (isUserDataValid()) {
648                         // Use cache, so it is fine
649                         return true;
650                 }
651         } elseif (isUserDataValid()) {
652                 // Use cache, so it is fine
653                 return true;
654         }
655
656
657         // By default none was found
658         $found = false;
659
660         // Query for the user
661         $result = SQL_QUERY_ESC("SELECT * FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `%s`='%s' LIMIT 1",
662                 array($column, $userid), __FUNCTION__, __LINE__);
663
664         // Do we have a record?
665         if (SQL_NUMROWS($result) == 1) {
666                 // Load data from cookies
667                 $data = SQL_FETCHARRAY($result);
668
669                 // Set the userid for later use
670                 setCurrentUserId($data['userid']);
671                 $GLOBALS['user_data'][getCurrentUserId()] = $data;
672
673                 // Rewrite 'last_failure' if found
674                 if (isset($GLOBALS['user_data'][getCurrentUserId()]['last_failure'])) {
675                         // Backup the raw one and zero it
676                         $GLOBALS['user_data'][getCurrentUserId()]['last_failure_raw'] = $GLOBALS['user_data'][getCurrentUserId()]['last_failure'];
677                         $GLOBALS['user_data'][getCurrentUserId()]['last_failure'] = '0';
678
679                         // Is it not zero?
680                         if ($GLOBALS['user_data'][getCurrentUserId()]['last_failure_raw'] != '0000-00-00 00:00:00') {
681                                 // Seperate data/time
682                                 $array = explode(' ', $GLOBALS['user_data'][getCurrentUserId()]['last_failure_raw']);
683
684                                 // Seperate data and time again
685                                 $array['date'] = explode('-', $array[0]);
686                                 $array['time'] = explode(':', $array[1]);
687
688                                 // Now pass it to mktime()
689                                 $GLOBALS['user_data'][getCurrentUserId()]['last_failure'] = mktime(
690                                         $array['time'][0],
691                                         $array['time'][1],
692                                         $array['time'][2],
693                                         $array['date'][1],
694                                         $array['date'][2],
695                                         $array['date'][0]
696                                 );
697                         } // END - if
698                 } // END - if
699
700                 // Found, but valid?
701                 $found = isUserDataValid();
702         } // END - if
703
704         // Free memory
705         SQL_FREERESULT($result);
706
707         // Return result
708         return $found;
709 }
710
711 // This patched function will reduce many SELECT queries for the specified or current admin login
712 function isAdmin ($admin = '') {
713         // Init variables
714         $ret = false; $passCookie = ''; $valPass = '';
715         //* DEBUG: */ print(__FUNCTION__.':'.$admin.'<br />');
716
717         // If admin login is not given take current from cookies...
718         if ((empty($admin)) && (isSessionVariableSet('admin_login')) && (isSessionVariableSet('admin_md5'))) {
719                 // Get admin login and password from session/cookies
720                 $admin = getSession('admin_login');
721                 $passCookie = getSession('admin_md5');
722         } // END - if
723         //* DEBUG: */ print(__FUNCTION__.':'.$admin.'/'.$passCookie.'<br />');
724
725         // Do we have cache?
726         if (!isset($GLOBALS['is_admin'][$admin])) {
727                 // Init it with failed
728                 $GLOBALS['is_admin'][$admin] = false;
729
730                 // Search in array for entry
731                 if (isset($GLOBALS['admin_hash'])) {
732                         // Use cached string
733                         $valPass = $GLOBALS['admin_hash'];
734                 } elseif ((!empty($passCookie)) && (isAdminHashSet($admin) === true) && (!empty($admin))) {
735                         // Login data is valid or not?
736                         $valPass = generatePassString(getAdminHash($admin));
737
738                         // Cache it away
739                         $GLOBALS['admin_hash'] = $valPass;
740
741                         // Count cache hits
742                         incrementStatsEntry('cache_hits');
743                 } elseif ((!empty($admin)) && ((!isExtensionActive('cache'))) || (isAdminHashSet($admin) === false)) {
744                         // Search for admin
745                         $result = SQL_QUERY_ESC("SELECT HIGH_PRIORITY `password` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `login`='%s' LIMIT 1",
746                                 array($admin), __FUNCTION__, __LINE__);
747
748                         // Is he admin?
749                         $passDB = '';
750                         if (SQL_NUMROWS($result) == 1) {
751                                 // Admin login was found so let's load password from DB
752                                 list($passDB) = SQL_FETCHROW($result);
753
754                                 // Temporary cache it
755                                 setAdminHash($admin, $passDB);
756
757                                 // Generate password hash
758                                 $valPass = generatePassString($passDB);
759                         } // END - if
760
761                         // Free memory
762                         SQL_FREERESULT($result);
763                 }
764
765                 if (!empty($valPass)) {
766                         // Check if password is valid
767                         //* DEBUG: */ print(__FUNCTION__ . ':(' . $valPass . '==' . $passCookie . ')='.intval($valPass == $passCookie).'<br />');
768                         $GLOBALS['is_admin'][$admin] = (($valPass == $passCookie) || ((strlen($valPass) == 32) && ($valPass == md5($passCookie))) || (($valPass == '*FAILED*') && (!isExtensionActive('cache'))));
769                 } // END - if
770         } // END - if
771
772         // Return result of comparision
773         return $GLOBALS['is_admin'][$admin];
774 }
775
776 // Generates a list of "max receiveable emails per day"
777 function addMaxReceiveList ($mode, $default = '', $return = false) {
778         $OUT = '';
779         $result = false;
780
781         switch ($mode) {
782                 case 'guest':
783                         // Guests (in the registration form) are not allowed to select 0 mails per day.
784                         $result = SQL_QUERY("SELECT value, comment FROM `{?_MYSQL_PREFIX?}_max_receive` WHERE value > 0 ORDER BY value",
785                         __FUNCTION__, __LINE__);
786                         break;
787
788                 case 'member':
789                         // Members are allowed to set to zero mails per day (we will change this soon!)
790                         $result = SQL_QUERY("SELECT value, comment FROM `{?_MYSQL_PREFIX?}_max_receive` ORDER BY value",
791                         __FUNCTION__, __LINE__);
792                         break;
793
794                 default: // Invalid!
795                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("Invalid mode %s detected.", $mode));
796                         break;
797         }
798
799         // Some entries are found?
800         if (SQL_NUMROWS($result) > 0) {
801                 $OUT = '';
802                 while ($content = SQL_FETCHARRAY($result)) {
803                         $OUT .= "      <option value=\"".$content['value']."\"";
804                         if (postRequestElement('max_mails') == $content['value']) $OUT .= ' selected="selected"';
805                         $OUT .= ">".$content['value']." {--PER_DAY--}";
806                         if (!empty($content['comment'])) $OUT .= " (".$content['comment'].')';
807                         $OUT .= "</option>\n";
808                 }
809
810                 // Load template
811                 $OUT = loadTemplate(($mode . '_receive_table'), true, $OUT);
812         } else {
813                 // Maybe the admin has to setup some maximum values?
814                 debug_report_bug('Nothing is being done here?');
815         }
816
817         // Free result
818         SQL_FREERESULT($result);
819
820         if ($return === true) {
821                 // Return generated HTML code
822                 return $OUT;
823         } else {
824                 // Output directly (default)
825                 outputHtml($OUT);
826         }
827 }
828
829 // Checks wether the given email address is used.
830 function isEmailTaken ($email) {
831         // Query the database
832         $result = SQL_QUERY_ESC("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE email LIKE '{PER}%s{PER}' LIMIT 1",
833                 array($email), __FUNCTION__, __LINE__);
834
835         // Is the email there?
836         $ret = (SQL_NUMROWS($result) == 1);
837
838         // Free the result
839         SQL_FREERESULT($result);
840
841         // Return result
842         return $ret;
843 }
844
845 // Validate the given menu action
846 function isMenuActionValid ($mode, $action, $what, $updateEntry=false) {
847         // Is the cache entry there and we shall not update?
848         if ((isset($GLOBALS['action_valid'][$mode][$action][$what])) && ($updateEntry === false)) {
849                 // Count cache hit
850                 incrementStatsEntry('cache_hits');
851
852                 // Then use this cache
853                 return $GLOBALS['action_valid'][$mode][$action][$what];
854         } // END - if
855
856         // By default nothing is valid
857         $ret = false;
858
859         // Look in all menus or only unlocked
860         $add = '';
861         if ((!isAdmin()) && ($mode != 'admin')) $add = " AND `locked`='N'";
862
863         //* DEBUG: */ print(__LINE__.':'.$mode.'/'.$action.'/'.$what."*<br />");
864         if (($mode != 'admin') && ($updateEntry === true)) {
865                 // Update guest or member menu
866                 $sql = SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_%s_menu` SET counter=counter+1 WHERE `action`='%s' AND `what`='%s'".$add." LIMIT 1",
867                         array($mode, $action, $what), __FUNCTION__, __LINE__, false);
868         } elseif (($what != 'overview') && (!empty($what))) {
869                 // Other actions
870                 $sql = SQL_QUERY_ESC("SELECT `id`, `what` FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE `action`='%s' AND `what`='%s'".$add." ORDER BY `action` DESC LIMIT 1",
871                         array($mode, $action, $what), __FUNCTION__, __LINE__, false);
872         } else {
873                 // Admin login overview
874                 $sql = SQL_QUERY_ESC("SELECT `id`, `what` FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE `action`='%s' AND (`what`='' OR `what` IS NULL)".$add." ORDER BY `action` DESC LIMIT 1",
875                         array($mode, $action), __FUNCTION__, __LINE__, false);
876         }
877
878         // Run SQL command
879         $result = SQL_QUERY($sql, __FUNCTION__, __LINE__);
880
881         // Should we look for affected rows (only update) or found rows?
882         if ($updateEntry === true) {
883                 // Check updated/affected rows
884                 $ret = (SQL_AFFECTEDROWS() == 1);
885         } else {
886                 // Check found rows
887                 $ret = (SQL_NUMROWS($result) == 1);
888         }
889
890         // Free memory
891         SQL_FREERESULT($result);
892
893         // Set cache entry
894         $GLOBALS['action_valid'][$mode][$action][$what] = $ret;
895
896         // Return result
897         return $ret;
898 }
899
900 // Send out mails depending on the 'mod/modes' combination
901 // @TODO Lame description for this function
902 function sendModeMails ($mod, $modes) {
903         // Load hash
904         if (fetchUserData(getMemberId())) {
905                 // Extract salt from cookie
906                 $salt = substr(getSession('u_hash'), 0, -40);
907
908                 // Now let's compare passwords
909                 $hash = generatePassString(getUserData('password'));
910
911                 // Does the hash match or should we change it?
912                 if (($hash == getSession('u_hash')) || (postRequestElement('pass1') == postRequestElement('pass2'))) {
913                         // Load user's data               0        1        2         3        4      5    6      7
914                         $result = SQL_QUERY_ESC("SELECT gender, surname, family, street_nr, country, zip, city, email FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `userid`=%s AND password='%s' LIMIT 1",
915                                 array(getMemberId(), getUserData('password')), __FUNCTION__, __LINE__);
916                         if (SQL_NUMROWS($result) == 1) {
917                                 // Load the data
918                                 $content = SQL_FETCHARRAY($result, 0, false);
919
920                                 // Free result
921                                 SQL_FREERESULT($result);
922
923                                 // Translate gender
924                                 $content['gender'] = translateGender($content['gender']);
925
926                                 // Clear/init the content variable
927                                 $content['message'] = '';
928
929                                 switch ($mod) {
930                                         case 'mydata':
931                                                 foreach ($modes as $mode) {
932                                                         switch ($mode) {
933                                                                 case 'normal': break; // Do not add any special lines
934                                                                 case 'email': // Email was changed!
935                                                                         $content['message'] = getMessage('MEMBER_CHANGED_EMAIL').": ".postRequestElement('old_email')."\n";
936                                                                         break;
937
938                                                                 case 'pass': // Password was changed
939                                                                         $content['message'] = getMessage('MEMBER_CHANGED_PASS')."\n";
940                                                                         break;
941
942                                                                 default:
943                                                                         logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown mode %s detected.", $mode));
944                                                                         $content['message'] = getMessage('MEMBER_UNKNOWN_MODE') . ': ' . $mode . "\n\n";
945                                                                         break;
946                                                         } // END - switch
947                                                 } // END - foreach
948
949                                                 if (isExtensionActive('country')) {
950                                                         // Replace code with description
951                                                         $content['country'] = generateCountryInfo(postRequestElement('country_code'));
952                                                 } // END - if
953
954                                                 // Merge content with data from POST
955                                                 $content = merge_array($content, postRequestArray());
956
957                                                 // Load template
958                                                 $message = loadEmailTemplate('member_mydata_notify', $content, getMemberId());
959
960                                                 if (getConfig('admin_notify') == 'Y') {
961                                                         // The admin needs to be notified about a profile change
962                                                         $message_admin = 'admin_mydata_notify';
963                                                         $sub_adm   = getMessage('ADMIN_CHANGED_DATA');
964                                                 } else {
965                                                         // No mail to admin
966                                                         $message_admin = '';
967                                                         $sub_adm   = '';
968                                                 }
969
970                                                 // Set subject lines
971                                                 $sub_mem = getMessage('MEMBER_CHANGED_DATA');
972
973                                                 // Output success message
974                                                 $content = "<span class=\"member_done\">{--MYDATA_MAIL_SENT--}</span>";
975                                                 break;
976
977                                         default: // Unsupported module!
978                                                 logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unsupported module %s detected.", $mod));
979                                                 $content = "<span class=\"member_failed\">{--UNKNOWN_MODULE--}</span>";
980                                                 break;
981                                 } // END - switch
982                         } else {
983                                 // Could not load profile data
984                                 $content = "<span class=\"member_failed\">{--MEMBER_CANNOT_LOAD_PROFILE--}</span>";
985                         }
986                 } else {
987                         // Passwords mismatch
988                         $content = "<span class=\"member_failed\">{--MEMBER_PASSWORD_ERROR--}</span>";
989                 }
990         } else {
991                 // Could not load profile
992                 $content = "<span class=\"member_failed\">{--MEMBER_CANNOT_LOAD_PROFILE--}</span>";
993         }
994
995         // Send email to user if required
996         if ((!empty($sub_mem)) && (!empty($message))) {
997                 // Send member mail
998                 sendEmail($content['email'], $sub_mem, $message);
999         } // END - if
1000
1001         // Send only if no other error has occured
1002         if (empty($content)) {
1003                 if ((!empty($sub_adm)) && (!empty($message_admin))) {
1004                         // Send admin mail
1005                         sendAdminNotification($sub_adm, $message_admin, $content, getMemberId());
1006                 } elseif (getConfig('admin_notify') == 'Y') {
1007                         // Cannot send mails to admin!
1008                         $content = getMessage('CANNOT_SEND_ADMIN_MAILS');
1009                 } else {
1010                         // No mail to admin
1011                         $content = "<span class=\"member_done\">{--MYDATA_MAIL_SENT--}</span>";
1012                 }
1013         } // END - if
1014
1015         // Load template
1016         loadTemplate('admin_settings_saved', false, $content);
1017 }
1018
1019 // Get action value from mode (admin/guest/member) and what-value
1020 function getModeAction ($mode, $what) {
1021         // Init status
1022         $ret = '';
1023
1024         //* DEBUG: */ print(__LINE__.'='.$mode.'/'.$what.'/'.getAction()."=<br />");
1025         if (!isExtensionInstalledAndNewer('sql_patches', '0.0.5')) {
1026                 // sql_patches is missing so choose depending on mode
1027                 if (isWhatSet()) {
1028                         // Use setted what
1029                         $what = getWhat();
1030                 } elseif ($mode == 'admin') {
1031                         // Admin area
1032                         $what = 'overview';
1033                 } else {
1034                         // Everywhere else
1035                         $what = 'welcome';
1036                 }
1037         } elseif ((empty($what)) && ($mode != 'admin')) {
1038                 // Use configured 'home'
1039                 $what = getConfig('index_home');
1040         } // END - if
1041
1042         if ($mode == 'admin') {
1043                 // Action value for admin area
1044                 if (isGetRequestElementSet('action')) {
1045                         // Use from request!
1046                         return getRequestElement('action');
1047                 } elseif (isActionSet()) {
1048                         // Get it directly from URL
1049                         return getAction();
1050                 } elseif (($what == 'overview') || (!isWhatSet())) {
1051                         // Default value for admin area
1052                         $ret = 'login';
1053                 }
1054         } elseif (isActionSet()) {
1055                 // Get it directly from URL
1056                 return getAction();
1057         }
1058         //* DEBUG: */ print(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): ret=".$ret.'<br />');
1059
1060         // Does the module have a menu?
1061         if (ifModuleHasMenu($mode)) {
1062                 // Rewriting modules to menu
1063                 $mode = mapModuleToTable($mode);
1064
1065                 // Guest and member menu is 'main' as the default
1066                 if (empty($ret)) $ret = 'main';
1067
1068                 // Load from database
1069                 $result = SQL_QUERY_ESC("SELECT `action` FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE `what`='%s' LIMIT 1",
1070                         array($mode, $what), __FUNCTION__, __LINE__);
1071                 if (SQL_NUMROWS($result) == 1) {
1072                         // Load action value and pray that this one is the right you want... ;-)
1073                         list($ret) = SQL_FETCHROW($result);
1074                 } // END - if
1075
1076                 // Free memory
1077                 SQL_FREERESULT($result);
1078         } elseif ((!isExtensionInstalled('sql_patches')) && (($mode != 'admin') && ($mode != 'unknown'))) {
1079                 // No sql_patches installed, but maybe we need to register an admin?
1080                 if (isAdminRegistered()) {
1081                         // Redirect to admin area
1082                         redirectToUrl('admin.php');
1083                 } // END - if
1084         }
1085
1086         // Return action value
1087         return $ret;
1088 }
1089
1090 // Get category name back
1091 function getCategory ($cid) {
1092         // Default is not found
1093         $ret = getMessage('_CATEGORY_404');
1094
1095         // Is the category id set?
1096         if ($cid == '0') {
1097                 // No category
1098                 $ret = getMessage('_CATEGORY_NONE');
1099         } elseif ($cid > 0) {
1100                 // Lookup the category in database
1101                 $result = SQL_QUERY_ESC("SELECT cat FROM `{?_MYSQL_PREFIX?}_cats` WHERE `id`=%s LIMIT 1",
1102                 array(bigintval($cid)), __FUNCTION__, __LINE__);
1103                 if (SQL_NUMROWS($result) == 1) {
1104                         // Category found... :-)
1105                         list($ret) = SQL_FETCHROW($result);
1106                 } // END - if
1107
1108                 // Free result
1109                 SQL_FREERESULT($result);
1110         } // END - if
1111
1112         // Return result
1113         return $ret;
1114 }
1115
1116 // Get a string of "mail title" and price back
1117 function getPaymentTitlePrice ($pid, $full=false) {
1118         // Default is not found
1119         $ret = getMessage('_PAYMENT_404');
1120
1121         // Load payment data
1122         $result = SQL_QUERY_ESC("SELECT mail_title, price FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`=%s LIMIT 1",
1123         array(bigintval($pid)), __FUNCTION__, __LINE__);
1124         if (SQL_NUMROWS($result) == 1) {
1125                 // Payment type found... :-)
1126                 if ($full === false) {
1127                         // Return only title
1128                         list($ret) = SQL_FETCHROW($result);
1129                 } else {
1130                         // Return title and price
1131                         list($t, $p) = SQL_FETCHROW($result);
1132                         $ret = $t.' / '.translateComma($p).' {?POINTS?}';
1133                 }
1134         }
1135
1136         // Free result
1137         SQL_FREERESULT($result);
1138
1139         // Return result
1140         return $ret;
1141 }
1142
1143 // Get (basicly) the price of given payment id
1144 function getPaymentPoints ($pid, $lookFor = 'price') {
1145         // Default value...
1146         $ret = '-1';
1147
1148         // Search for it in database
1149         $result = SQL_QUERY_ESC("SELECT %s FROM `{?_MYSQL_PREFIX?}_payments` WHERE `id`=%s LIMIT 1",
1150         array($lookFor, $pid), __FUNCTION__, __LINE__);
1151
1152         // Is the entry there?
1153         if (SQL_NUMROWS($result) == 1) {
1154                 // Payment type found... :-)
1155                 list($ret) = SQL_FETCHROW($result);
1156         } // END - if
1157
1158         // Free result
1159         SQL_FREERESULT($result);
1160
1161         // Return value
1162         return $ret;
1163 }
1164
1165 // Remove a receiver's id from $receivers and add a link for him to confirm
1166 function removeReceiver (&$receivers, $key, $userid, $pool_id, $stats_id = '', $bonus = false) {
1167         // Default is not removed
1168         $ret = 'failed';
1169
1170         // Is the userid valid?
1171         if ($userid > 0) {
1172                 // Remove entry from array
1173                 unset($receivers[$key]);
1174
1175                 // Is there already a line for this user available?
1176                 if ($stats_id > 0) {
1177                         // Only when we got a real stats id continue searching for the entry
1178                         $type = 'NORMAL'; $rowName = 'stats_id';
1179                         if ($bonus) { $type = 'BONUS'; $rowName = 'bonus_id'; }
1180
1181                         // Try to look the entry up
1182                         $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_user_links` WHERE %s='%s' AND `userid`=%s AND link_type='%s' LIMIT 1",
1183                                 array($rowName, $stats_id, bigintval($userid), $type), __FUNCTION__, __LINE__);
1184
1185                         // Was it *not* found?
1186                         if (SQL_NUMROWS($result) == '0') {
1187                                 // So we add one!
1188                                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_user_links` (`%s`, `userid`, `link_type`) VALUES ('%s','%s','%s')",
1189                                         array($rowName, $stats_id, bigintval($userid), $type), __FUNCTION__, __LINE__);
1190                                 $ret = 'done';
1191                         } else {
1192                                 // Already found
1193                                 $ret = 'already';
1194                         }
1195
1196                         // Free memory
1197                         SQL_FREERESULT($result);
1198                 }
1199         }
1200
1201         // Return status for sending routine
1202         return $ret;
1203 }
1204
1205 // Calculate sum (default) or count records of given criteria
1206 function countSumTotalData ($search, $tableName, $lookFor = 'id', $whereStatement = 'userid', $countRows = false, $add = '') {
1207         $ret = '0';
1208         //* DEBUG: */ print($search.'/'.$tableName.'/'.$lookFor.'/'.$whereStatement.'/'.$add.'<br />');
1209         if ((empty($search)) && ($search != '0')) {
1210                 // Count or sum whole table?
1211                 if ($countRows === true) {
1212                         // Count whole table
1213                         $result = SQL_QUERY_ESC("SELECT COUNT(`%s`) FROM `{?_MYSQL_PREFIX?}_%s`".$add,
1214                                 array($lookFor, $tableName), __FUNCTION__, __LINE__);
1215                 } else {
1216                         // Sum whole table
1217                         $result = SQL_QUERY_ESC("SELECT SUM(`%s`) FROM `{?_MYSQL_PREFIX?}_%s`".$add,
1218                                 array($lookFor, $tableName), __FUNCTION__, __LINE__);
1219                 }
1220         } elseif (($countRows === true) || ($lookFor == 'userid')) {
1221                 // Count rows
1222                 //* DEBUG: */ print("COUNT!<br />");
1223                 $result = SQL_QUERY_ESC("SELECT COUNT(`%s`) FROM `{?_MYSQL_PREFIX?}_%s` WHERE `%s`='%s'".$add,
1224                         array($lookFor, $tableName, $whereStatement, $search), __FUNCTION__, __LINE__);
1225         } else {
1226                 // Add all rows
1227                 //* DEBUG: */ print("SUM!<br />");
1228                 $result = SQL_QUERY_ESC("SELECT SUM(`%s`) FROM `{?_MYSQL_PREFIX?}_%s` WHERE `%s`='%s'".$add,
1229                         array($lookFor, $tableName, $whereStatement, $search), __FUNCTION__, __LINE__);
1230         }
1231
1232         // Load row
1233         list($ret) = SQL_FETCHROW($result);
1234
1235         // Free result
1236         SQL_FREERESULT($result);
1237
1238         // Fix empty values
1239         if ((empty($ret)) && ($lookFor != 'counter') && ($lookFor != 'id') && ($lookFor != 'userid')) {
1240                 // Float number
1241                 $ret = '0.00000';
1242         } elseif (''.$ret.'' == '') {
1243                 // Fix empty result
1244                 $ret = '0';
1245         }
1246
1247         // Return value
1248         //* DEBUG: */ print 'ret='.$ret.'<br />';
1249         return $ret;
1250 }
1251 // Getter fro ref level percents
1252 function getReferalLevelPercents ($level) {
1253         // Default is zero
1254         $per = '0';
1255
1256         // Do we have cache?
1257         if ((isset($GLOBALS['cache_array']['refdepths']['level'])) && (isExtensionActive('cache'))) {
1258                 // First look for level
1259                 $key = array_search($level, $GLOBALS['cache_array']['refdepths']['level']);
1260                 if ($key !== false) {
1261                         // Entry found!
1262                         $per = $GLOBALS['cache_array']['refdepths']['percents'][$key];
1263
1264                         // Count cache hit
1265                         incrementStatsEntry('cache_hits');
1266                 } // END - if
1267         } elseif (!isExtensionActive('cache')) {
1268                 // Get referal data
1269                 $result_level = SQL_QUERY_ESC("SELECT `percents` FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `level`='%s' LIMIT 1",
1270                         array(bigintval($level)), __FUNCTION__, __LINE__);
1271
1272                 // Entry found?
1273                 if (SQL_NUMROWS($result_level) == 1) {
1274                         // Get percents
1275                         list($per) = SQL_FETCHROW($result_level);
1276                 } // END - if
1277
1278                 // Free result
1279                 SQL_FREERESULT($result_level);
1280         }
1281
1282         // Return percent
1283         return $per;
1284 }
1285
1286 /**
1287  *
1288  * Dynamic referal system, can also send mails!
1289  *
1290  * subject     = Subject line, write in lower-case letters and underscore is allowed
1291  * userid         = Referal id wich should receive...
1292  * points      = ... xxx points
1293  * sendNotify  = shall I send the referal an email or not?
1294  * rid         = inc/modules/guest/what-confirm.php need this
1295  * locked      = Shall I pay it to normal (false) or locked (true) points ammount?
1296  * add_mode    = Add points only to $userid or also refs? (WARNING! Changing 'ref' to 'direct'
1297  *               for default value will cause no referal will get points ever!!!)
1298  */
1299 function addPointsThroughReferalSystem ($subject, $userid, $points, $sendNotify = false, $rid = '0', $locked = false, $add_mode = 'ref') {
1300         //* DEBUG: */ print("----------------------- <font color=\"#00aa00\">".__FUNCTION__." - ENTRY</font> ------------------------<ul><li>\n");
1301         // Convert mode to lower-case
1302         $add_mode = strtolower($add_mode);
1303
1304         // When $userid = '0' add points to jackpot
1305         if (($userid == '0') && (isExtensionActive('jackpot'))) {
1306                 // Add points to jackpot
1307                 addPointsToJackpot($points);
1308                 return;
1309         } // END - if
1310
1311         // Prepare data for the filter
1312         $filterData = array(
1313                 'subject'  => $subject,
1314                 'userid'   => $userid,
1315                 'points'   => $points,
1316                 'notify'   => $sendNotify,
1317                 'rid'      => $rid,
1318                 'locked'   => $locked,
1319                 'mode'     => 'add',
1320                 'sub_mode' => $add_mode,
1321         );
1322
1323         // Filter it now
1324         runFilterChain('add_points', $filterData);
1325
1326         // Count up referal depth
1327         if (!isset($GLOBALS['ref_level'])) {
1328                 // Initialialize referal system
1329                 //* DEBUG: */ print(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): Referal system initialized!<br />");
1330                 $GLOBALS['ref_level'] = '0';
1331         } else {
1332                 // Increase referal level
1333                 $GLOBALS['ref_level']++;
1334                 //* DEBUG: */ print(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): Referal level increased. DEPTH={$GLOBALS['ref_level']}<br />");
1335         }
1336
1337         // Default is 'normal' points
1338         $data = 'points';
1339
1340         // Which points, locked or normal?
1341         if ($locked === true) $data = 'locked_points';
1342
1343         // Check user account
1344         //* DEBUG: */ print(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):userid={$userid},points={$points}<br />");
1345         if (fetchUserData($userid)) {
1346                 // This is the user and his ref
1347                 $GLOBALS['cache_array']['add_userid'][getUserData('refid')] = $userid;
1348
1349                 // Get percents
1350                 $per = getReferalLevelPercents($GLOBALS['ref_level']);
1351                 //* DEBUG: */ print(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):userid={$userid},points={$points},depth={$GLOBALS['ref_level']},per={$per},mode={$add_mode}<br />");
1352
1353                 // Some percents found?
1354                 if ($per > 0) {
1355                         // Calculate new points
1356                         //* DEBUG: */ print(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):userid={$userid},points={$points},per={$per},depth={$GLOBALS['ref_level']}<br />");
1357                         $ref_points = $points * $per / 100;
1358
1359                         // Pay refback here if level > 0 and in ref-mode
1360                         if ((isExtensionActive('refback')) && ($GLOBALS['ref_level'] > 0) && ($per < 100) && ($add_mode == "ref") && (isset($GLOBALS['cache_array']['add_userid'][$userid]))) {
1361                                 //* DEBUG: */ print(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):userid={$userid},data={$GLOBALS['cache_array']['add_userid'][$userid]},ref_points={$ref_points},depth={$GLOBALS['ref_level']} - BEFORE!<br />");
1362                                 $ref_points = addRefbackPoints($GLOBALS['cache_array']['add_userid'][$userid], $userid, $points, $ref_points);
1363                                 //* DEBUG: */ print(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):userid={$userid},data={$GLOBALS['cache_array']['add_userid'][$userid]},ref_points={$ref_points},depth={$GLOBALS['ref_level']} - AFTER!<br />");
1364                         } // END - if
1365
1366                         // Update points...
1367                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_points` SET `%s`=`%s`+%s WHERE `userid`=%s AND `ref_depth`='%s' LIMIT 1",
1368                                 array($data, $data, $ref_points, bigintval($userid), bigintval($GLOBALS['ref_level'])), __FUNCTION__, __LINE__);
1369                         //* DEBUG: */ print(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):data={$data},ref_points={$ref_points},userid={$userid},depth={$GLOBALS['ref_level']},mode={$add_mode} - UPDATE! (".SQL_AFFECTEDROWS().")<br />");
1370
1371                         // No entry updated?
1372                         if (SQL_AFFECTEDROWS() < 1) {
1373                                 // First ref in this level! :-)
1374                                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_user_points` (`userid`,`ref_depth`,`%s`) VALUES (%s,'%s',%s)",
1375                                         array($data, bigintval($userid), bigintval($GLOBALS['ref_level']), $ref_points), __FUNCTION__, __LINE__);
1376                                 //* DEBUG: */ print(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):data={$data},ref_points={$ref_points},userid={$userid},depth={$GLOBALS['ref_level']},mode={$add_mode} - INSERTED! (".SQL_AFFECTEDROWS().")<br />");
1377                         } // END - if
1378
1379                         // Points updated, maybe I shall send him an email?
1380                         if (($sendNotify === true) && (getUserData('refid') > 0) && ($locked === false)) {
1381                                 // Prepare content
1382                                 $content = array(
1383                                         'percents' => $per,
1384                                         'level'    => bigintval($GLOBALS['ref_level']),
1385                                         'points'   => $ref_points,
1386                                         'refid'    => getUserData('refid')
1387                                 );
1388
1389                                 // Load email template
1390                                 $message = loadEmailTemplate('confirm-referal', $content, bigintval($userid));
1391
1392                                 sendEmail(getUserData('email'), THANX_REFERAL_ONE, $message);
1393                         } elseif (($sendNotify) && (getUserData('refid') == '0') && ($locked === false) && ($add_mode == 'direct')) {
1394                                 // Prepare content
1395                                 $content = array(
1396                                         'text'   => getMessage('REASON_DIRECT_PAYMENT'),
1397                                         'points' => translateComma($ref_points)
1398                                 );
1399
1400                                 // Load message
1401                                 $message = loadEmailTemplate('add-points', $content, $userid);
1402
1403                                 // And sent it away
1404                                 sendEmail(getUserData('email'), getMessage('SUBJECT_DIRECT_PAYMENT'), $message);
1405                                 if (!isGetRequestElementSet('mid')) loadTemplate('admin_settings_saved', false, getMessage('ADMIN_POINTS_ADDED'));
1406                         }
1407
1408                         // Maybe there's another ref?
1409                         if ((getUserData('refid') > 0) && ($points > 0) && (getUserData('refid') != $userid) && ($add_mode == 'ref')) {
1410                                 // Then let's credit him here...
1411                                 //* DEBUG: */ print(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):userid={$userid},ref=".getUserData('refid').",points={$points} - ADVANCE!<br />");
1412                                 addPointsThroughReferalSystem(sprintf("%s_ref:%s", $subject, $GLOBALS['ref_level']), getUserData('refid'), $points, $sendNotify, getUserData('refid'), $locked);
1413                         } // END - if
1414                 } // END - if
1415         } // END - if
1416
1417         //* DEBUG: */ print("</li></ul>----------------------- <font color=\"#aa0000\">".__FUNCTION__." - EXIT</font> ------------------------<br />");
1418 }
1419
1420 // Updates the referal counter
1421 function updateReferalCounter ($userid) {
1422         // Make it sure referal level zero (member him-/herself) is at least selected
1423         if (empty($GLOBALS['cache_array']['ref_level'][$userid])) $GLOBALS['cache_array']['ref_level'][$userid] = 1;
1424         //* DEBUG: */ print(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):userid={$userid},level={$GLOBALS['cache_array']['ref_level'][$userid]}<br />");
1425
1426         // Update counter
1427         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_refsystem` SET `counter`=`counter`+1 WHERE `userid`=%s AND `level`='%s' LIMIT 1",
1428                 array(bigintval($userid), $GLOBALS['cache_array']['ref_level'][$userid]), __FUNCTION__, __LINE__);
1429
1430         // When no entry was updated then we have to create it here
1431         //* DEBUG: */ print(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):updated=".SQL_AFFECTEDROWS().'<br />');
1432         if (SQL_AFFECTEDROWS() < 1) {
1433                 // First count!
1434                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_refsystem` (`userid`, `level`, `counter`) VALUES (%s,%s,1)",
1435                         array(bigintval($userid), $GLOBALS['cache_array']['ref_level'][$userid]), __FUNCTION__, __LINE__);
1436                 //* DEBUG: */ print(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):userid={$userid}<br />");
1437         } // END - if
1438
1439         // Init referal id
1440         $ref = '0';
1441
1442         // Check for his referal
1443         if (fetchUserData($userid)) {
1444                 // Get it
1445                 $ref = getUserData('refid');
1446         } // END - if
1447
1448         //* DEBUG: */ print(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):userid={$userid},ref={$ref}<br />");
1449
1450         // When he has a referal...
1451         if (($ref > 0) && ($ref != $userid)) {
1452                 // Move to next referal level and count his counter one up!
1453                 //* DEBUG: */ print(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):ref={$ref} - ADVANCE!<br />");
1454                 $GLOBALS['cache_array']['ref_level'][$userid]++;
1455                 updateReferalCounter($ref);
1456         } elseif ((($ref == $userid) || ($ref == '0')) && (isExtensionInstalledAndNewer('cache', '0.1.2'))) {
1457                 // Remove cache here
1458                 //* DEBUG: */ print(__FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):ref={$ref} - CACHE!<br />");
1459                 rebuildCacheFile('refsystem', 'refsystem');
1460         }
1461
1462         // "Walk" back here
1463         $GLOBALS['cache_array']['ref_level'][$userid]--;
1464
1465         // Handle refback here if extension is installed
1466         if (isExtensionActive('refback')) {
1467                 updateRefbackTable($userid);
1468         } // END - if
1469 }
1470
1471 // Sends out mail to all administrators. This function is no longer obsolete
1472 // because we need it when there is no ext-admins installed
1473 function sendAdminEmails ($subj, $message) {
1474         // Load all admin email addresses
1475         $result = SQL_QUERY("SELECT `email` FROM `{?_MYSQL_PREFIX?}_admins` ORDER BY `id` ASC", __FUNCTION__, __LINE__);
1476         while ($content = SQL_FETCHARRAY($result)) {
1477                 // Send the email out
1478                 sendEmail($content['email'], $subj, $message);
1479         } // END - if
1480
1481         // Free result
1482         SQL_FREERESULT($result);
1483
1484         // Really simple... ;-)
1485 }
1486
1487 // Get id number from administrator's login name
1488 function getAdminId ($login) {
1489         // By default no admin is found
1490         $ret = '-1';
1491
1492         // Check cache
1493         if (isset($GLOBALS['cache_array']['admin']['admin_id'][$login])) {
1494                 // Use it if found to save SQL queries
1495                 $ret = $GLOBALS['cache_array']['admin']['admin_id'][$login];
1496
1497                 // Update cache hits
1498                 incrementStatsEntry('cache_hits');
1499         } elseif (!isExtensionActive('cache')) {
1500                 // Load from database
1501                 $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `login`='%s' LIMIT 1",
1502                         array($login), __FUNCTION__, __LINE__);
1503                 if (SQL_NUMROWS($result) == 1) {
1504                         list($ret) = SQL_FETCHROW($result);
1505                 } // END - if
1506
1507                 // Free result
1508                 SQL_FREERESULT($result);
1509         }
1510         return $ret;
1511 }
1512
1513 // "Getter" for current admin id
1514 function getCurrentAdminId () {
1515         // Do we have cache?
1516         if (!isset($GLOBALS['current_admin_id'])) {
1517                 // Get the admin login from session
1518                 $adminLogin = getSession('admin_login');
1519
1520                 // "Solve" it into an id
1521                 $adminId = getAdminId($adminLogin);
1522
1523                 // Remember in cache securely
1524                 $GLOBALS['current_admin_id'] = bigintval($adminId);
1525         } // END - if
1526
1527         // Return it
1528         return $GLOBALS['current_admin_id'];
1529 }
1530
1531 // Get password hash from administrator's login name
1532 function getAdminHash ($admin) {
1533         // By default an invalid hash is returned
1534         $ret = '-1';
1535
1536         if (isAdminHashSet($admin)) {
1537                 // Check cache
1538                 $ret = $GLOBALS['cache_array']['admin']['password'][$admin];
1539
1540                 // Update cache hits
1541                 incrementStatsEntry('cache_hits');
1542         } elseif (!isExtensionActive('cache')) {
1543                 // Load from database
1544                 $result = SQL_QUERY_ESC("SELECT password FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
1545                         array($admin), __FUNCTION__, __LINE__);
1546                 if (SQL_NUMROWS($result) == 1) {
1547                         // Fetch data
1548                         list($ret) = SQL_FETCHROW($result);
1549
1550                         // Set cache
1551                         setAdminHash($admin, $ret);
1552                 } // END - if
1553
1554                 // Free result
1555                 SQL_FREERESULT($result);
1556         }
1557         return $ret;
1558 }
1559
1560 // "Getter" for admin login
1561 function getAdminLogin ($adminId) {
1562         // By default a non-existent login is returned (other functions react on this!)
1563         $ret = '***';
1564
1565         if (isset($GLOBALS['cache_array']['admin']['login'][$adminId])) {
1566                 // Get cache
1567                 $ret = $GLOBALS['cache_array']['admin']['login'][$adminId];
1568
1569                 // Update cache hits
1570                 incrementStatsEntry('cache_hits');
1571         } elseif (!isExtensionActive('cache')) {
1572                 // Load from database
1573                 $result = SQL_QUERY_ESC("SELECT login FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
1574                 array(bigintval($adminId)), __FUNCTION__, __LINE__);
1575                 if (SQL_NUMROWS($result) == 1) {
1576                         // Fetch data
1577                         list($ret) = SQL_FETCHROW($result);
1578
1579                         // Set cache
1580                         $GLOBALS['cache_array']['admin']['login'][$adminId] = $ret;
1581                 } // END - if
1582
1583                 // Free memory
1584                 SQL_FREERESULT($result);
1585         }
1586         return $ret;
1587 }
1588
1589 // Get email address of admin id
1590 function getAdminEmail ($adminId) {
1591         // By default an invalid emails is returned
1592         $ret = '***';
1593
1594         if (isset($GLOBALS['cache_array']['admin']['email'][$adminId])) {
1595                 // Get cache
1596                 $ret = $GLOBALS['cache_array']['admin']['email'][$adminId];
1597
1598                 // Update cache hits
1599                 incrementStatsEntry('cache_hits');
1600         } elseif (!isExtensionActive('cache')) {
1601                 // Load from database
1602                 $result_admin_id = SQL_QUERY_ESC("SELECT email FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
1603                         array(bigintval($adminId)), __FUNCTION__, __LINE__);
1604                 if (SQL_NUMROWS($result_admin_id) == 1) {
1605                         // Get data
1606                         list($ret) = SQL_FETCHROW($result_admin_id);
1607
1608                         // Set cache
1609                         $GLOBALS['cache_array']['admin']['email'][$adminId] = $ret;
1610                 } // END - if
1611
1612                 // Free result
1613                 SQL_FREERESULT($result_admin_id);
1614         }
1615
1616         // Return email
1617         return $ret;
1618 }
1619
1620 // Get default ACL  of admin id
1621 function getAdminDefaultAcl ($adminId) {
1622         // By default an invalid ACL value is returned
1623         $ret = '***';
1624
1625         // Is sql_patches there and was it found in cache?
1626         if (!isExtensionActive('sql_patches')) {
1627                 // Not found, which is bad, so we need to allow all
1628                 $ret =  'allow';
1629         } elseif (isset($GLOBALS['cache_array']['admin']['def_acl'][$adminId])) {
1630                 // Use cache
1631                 $ret = $GLOBALS['cache_array']['admin']['def_acl'][$adminId];
1632
1633                 // Update cache hits
1634                 incrementStatsEntry('cache_hits');
1635         } elseif (!isExtensionActive('cache')) {
1636                 // Load from database
1637                 $result_admin_id = SQL_QUERY_ESC("SELECT `default_acl` FROM `{?_MYSQL_PREFIX?}_admins` WHERE `id`=%s LIMIT 1",
1638                         array(bigintval($adminId)), __FUNCTION__, __LINE__);
1639                 if (SQL_NUMROWS($result_admin_id) == 1) {
1640                         // Fetch data
1641                         list($ret) = SQL_FETCHROW($result_admin_id);
1642
1643                         // Set cache
1644                         $GLOBALS['cache_array']['admin']['def_acl'][$adminId] = $ret;
1645                 }
1646
1647                 // Free result
1648                 SQL_FREERESULT($result_admin_id);
1649         }
1650
1651         // Return email
1652         return $ret;
1653 }
1654
1655 // Generates an option list from various parameters
1656 function generateOptionList ($table, $id, $name, $default='', $special='', $where='') {
1657         $ret = '';
1658         if ($table == '/ARRAY/') {
1659                 // Selection from array
1660                 if ((is_array($id)) && (is_array($name)) && (count($id)) == (count($name))) {
1661                         // Both are arrays
1662                         foreach ($id as $idx => $value) {
1663                                 $ret .= '<option value="' . $value . '"';
1664                                 if ($default == $value) $ret .= ' selected="selected"';
1665                                 $ret .= '>' . $name[$idx] . '</option>';
1666                         } // END - foreach
1667                 } else {
1668                         // Problem in request
1669                         debug_report_bug('Not all are arrays: id[' . count($id) . ']=' . gettype($id) . ',name[' . count($name) . ']=' . gettype($name));
1670                 }
1671         } else {
1672                 // Data from database
1673                 $SPEC = ', `' . $id . '`';
1674                 if (!empty($special)) $SPEC = ', ' . $special;
1675                 $ORDER = $name . $SPEC;
1676                 if ($table == 'country') $ORDER = $special;
1677
1678                 // Query the database
1679                 $result = SQL_QUERY_ESC("SELECT `%s`, `%s`".$SPEC." FROM `{?_MYSQL_PREFIX?}_%s` ".$where." ORDER BY %s",
1680                         array($id, $ORDER, $table, $name), __FUNCTION__, __LINE__);
1681
1682                 // Do we have rows?
1683                 if (SQL_NUMROWS($result) > 0) {
1684                         // Found data so add them as OPTION lines: $id is the value and $name is the "name" of the option
1685                         // @TODO Try to rewrite this to $content = SQL_FETCHARRAY()
1686                         while (list($value, $title, $add) = SQL_FETCHROW($result)) {
1687                                 if (empty($special)) $add = '';
1688                                 $ret .= '<option value="' . $value . '"';
1689                                 if ($default == $value) $ret .= ' selected="selected"';
1690                                 if (!empty($add)) $add = ' ('.$add.')';
1691                                 $ret .= '>' . $title . $add . '</option>';
1692                         } // END - while
1693
1694                         // Free memory
1695                         SQL_FREERESULT($result);
1696                 } else {
1697                         // No data found
1698                         $ret = '<option value="x">{--SELECT_NONE--}</option>';
1699                 }
1700         }
1701
1702         // Return - hopefully - the requested data
1703         return $ret;
1704 }
1705 // Activate exchange
1706 function FILTER_ACTIVATE_EXCHANGE () {
1707         // Is the extension 'user' there?
1708         if ((!isExtensionActive('user')) || (getConfig('activate_xchange') == '0')) {
1709                 // Silently abort here
1710                 return false;
1711         } // END - if
1712
1713         // Check total amount of users
1714         $totalUsers = countSumTotalData('CONFIRMED', 'user_data', 'userid', 'status', true, ' AND max_mails > 0');
1715
1716         if ($totalUsers >= getConfig('activate_xchange')) {
1717                 // Activate System
1718                 setSqlsArray(array(
1719                         "UPDATE `{?_MYSQL_PREFIX?}_mod_reg` SET `locked`='N', `hidden`='N', `mem_only`='Y' WHERE `module`='order' LIMIT 1",
1720                         "UPDATE `{?_MYSQL_PREFIX?}_member_menu` SET `visible`='Y', `locked`='N' WHERE `what`='order' OR `what`='unconfirmed' LIMIT 2",
1721                 ));
1722
1723                 // Run SQLs
1724                 runFilterChain('run_sqls');
1725
1726                 // Update configuration
1727                 updateConfiguration('activate_xchange' ,0);
1728
1729                 // Rebuild cache
1730                 rebuildCacheFile('modules', 'modules');
1731         } // END - if
1732 }
1733
1734 // Deletes a user account with given reason
1735 function deleteUserAccount ($userid, $reason) {
1736         $points = '0';
1737         $result = SQL_QUERY_ESC("SELECT
1738         (SUM(p.points) - d.used_points) AS points
1739 FROM
1740         `{?_MYSQL_PREFIX?}_user_points` AS p
1741 LEFT JOIN
1742         `{?_MYSQL_PREFIX?}_user_data` AS d
1743 ON
1744         p.userid=d.userid
1745 WHERE
1746         p.userid=%s",
1747                 array(bigintval($userid)), __FUNCTION__, __LINE__);
1748         if (SQL_NUMROWS($result) == 1) {
1749                 // Save his points to add them to the jackpot
1750                 list($points) = SQL_FETCHROW($result);
1751
1752                 // Delete points entries as well
1753                 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_points` WHERE `userid`=%s", array(bigintval($userid)), __FUNCTION__, __LINE__);
1754
1755                 // Update mediadata as well
1756                 if (isExtensionInstalledAndNewer('mediadata', '0.0.4')) {
1757                         // Update database
1758                         updateMediadataEntry(array('total_points'), 'sub', $points);
1759                 } // END - if
1760
1761                 // Now, when we have all his points adds them do the jackpot!
1762                 if (isExtensionActive('jackpot')) addPointsToJackpot($points);
1763         } // END - if
1764
1765         // Free the result
1766         SQL_FREERESULT($result);
1767
1768         // Delete category selections as well...
1769         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_cats` WHERE `userid`=%s",
1770                 array(bigintval($userid)), __FUNCTION__, __LINE__);
1771
1772         // Remove from rallye if found
1773         if (isExtensionActive('rallye')) {
1774                 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_rallye_users` WHERE `userid`=%s",
1775                         array(bigintval($userid)), __FUNCTION__, __LINE__);
1776         } // END - if
1777
1778         // Now a mail to the user and that's all...
1779         $message = loadEmailTemplate('del-user', array('text' => $reason), $userid);
1780         sendEmail($userid, getMessage('ADMIN_DEL_ACCOUNT'), $message);
1781
1782         // Ok, delete the account!
1783         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `userid`=%s LIMIT 1", array(bigintval($userid)), __FUNCTION__, __LINE__);
1784 }
1785
1786 // Generates meta description for given module and 'what' value
1787 function generateMetaDescriptionCode ($mod, $what) {
1788         // Exclude admin and member's area
1789         if (($mod != 'admin') && ($mod != 'login')) {
1790                 // Construct dynamic description
1791                 $DESCR = '{?MAIN_TITLE?} '.trim(getConfig('title_middle')) . ' ' . addMenuDescription('guest', 'what-'.$what, true);
1792
1793                 // Output it directly
1794                 outputHtml('<meta name="description" content="' . $DESCR . '" />');
1795         } // END - if
1796
1797         // Remove depth
1798         unset($GLOBALS['ref_level']);
1799 }
1800
1801 // Gets the matching what name from module
1802 function getWhatFromModule ($modCheck) {
1803         // Is the request element set?
1804         if (isGetRequestElementSet('what')) {
1805                 // Then return this!
1806                 return getRequestElement('what');
1807         } // END - if
1808
1809         // Default is empty
1810         $what = '';
1811
1812         //* DEBUG: */ print(__LINE__.'!'.$modCheck."!<br />");
1813         switch ($modCheck) {
1814                 case 'admin':
1815                         $what = 'overview';
1816                         break;
1817
1818                 case 'login':
1819                 case 'index':
1820                         // Is ext-sql_patches installed and newer than 0.0.5?
1821                         if (isExtensionInstalledAndNewer('sql_patches', '0.0.5')) {
1822                                 // Use it from config
1823                                 $what = getConfig('index_home');
1824                         } else {
1825                                 // Use default 'welcome'
1826                                 $what = 'welcome';
1827                         }
1828                         break;
1829
1830                 default:
1831                         $what = '';
1832                         break;
1833         } // END - switch
1834
1835         // Return what value
1836         return $what;
1837 }
1838
1839 // Subtract points from database and mediadata cache
1840 function subtractPoints ($subject, $userid, $points) {
1841         // Add points to used points
1842         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `used_points`=`used_points`+%s WHERE `userid`=%s LIMIT 1",
1843                 array($points, bigintval($userid)), __FUNCTION__, __LINE__);
1844
1845         // Prepare filter data
1846         $filterData = array(
1847                 'subject' => $subject,
1848                 'userid'  => $userid,
1849                 'points'  => $points,
1850                 'mode'    => 'sub'
1851         );
1852
1853         // Insert booking record
1854         runFilterChain('sub_points', $filterData);
1855 }
1856
1857 // "Getter" for total available receivers
1858 function getTotalReceivers ($mode='normal') {
1859         // Query database
1860         $result_all = SQL_QUERY("SELECT
1861         `userid`
1862 FROM
1863         `{?_MYSQL_PREFIX?}_user_data`
1864 WHERE
1865         `status`='CONFIRMED' AND `receive_mails` > 0 ".runFilterChain('exclude_users', $mode),
1866         __FUNCTION__, __LINE__);
1867
1868         // Get num rows
1869         $numRows = SQL_NUMROWS($result_all);
1870
1871         // Free result
1872         SQL_FREERESULT($result_all);
1873
1874         // Return value
1875         return $numRows;
1876 }
1877
1878 // Returns HTML code with an "<option> list" of all categories
1879 function generateCategoryOptionsList ($mode) {
1880         // Prepare WHERE statement
1881         $whereStatement = " WHERE `visible`='Y'";
1882         if (isAdmin()) $whereStatement = '';
1883
1884         // Initialize array...
1885         $CATS = array(
1886                 'id'   => array(),
1887                 'name' => array(),
1888                 'userids' => array()
1889         );
1890
1891         // Get categories
1892         $result = SQL_QUERY("SELECT `id`, `cat` FROM `{?_MYSQL_PREFIX?}_cats`".$whereStatement." ORDER BY `sort` ASC",
1893                 __FUNCTION__, __LINE__);
1894
1895         // Do we have entries?
1896         if (SQL_NUMROWS($result) > 0) {
1897                 // ... and begin loading stuff
1898                 while ($content = SQL_FETCHARRAY($result)) {
1899                         // Transfer some data
1900                         $CATS['id'][]   = $content['id'];
1901                         $CATS['name'][] = $content['cat'];
1902
1903                         // Check which users are in this category
1904                         $result_userids = SQL_QUERY_ESC("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_cats` WHERE `cat_id`=%s",
1905                                 array(bigintval($content['id'])), __FUNCTION__, __LINE__);
1906
1907                         // Start adding all
1908                         $userid_cnt = '0';
1909                         // @TODO Rewrite this to $content = SQL_FETCHARRAY()
1910                         while (list($ucat) = SQL_FETCHROW($result_userids)) {
1911                                 $result_ver = SQL_QUERY_ESC("SELECT
1912         `userid`
1913 FROM
1914         `{?_MYSQL_PREFIX?}_user_data`
1915 WHERE
1916         `userid`=%s AND
1917         `status`='CONFIRMED' AND
1918         `receive_mails` > 0".runFilterChain('exclude_users', $mode)."
1919 LIMIT 1",
1920                                         array(bigintval($ucat)), __FUNCTION__, __LINE__);
1921
1922                                 // Add user count
1923                                 $userid_cnt += SQL_NUMROWS($result_ver);
1924
1925                                 // Free memory
1926                                 SQL_FREERESULT($result_ver);
1927                         } // END - while
1928
1929                         // Free memory
1930                         SQL_FREERESULT($result_userids);
1931
1932                         // Add counter
1933                         $CATS['userids'][] = $userid_cnt;
1934                 } // END - while
1935
1936                 // Free memory
1937                 SQL_FREERESULT($result);
1938
1939                 // Generate options
1940                 $OUT = '';
1941                 foreach ($CATS['id'] as $key => $value) {
1942                         if (strlen($CATS['name'][$key]) > 20) $CATS['name'][$key] = substr($CATS['name'][$key], 0, 17)."...";
1943                         $OUT .= '      <option value="' . $value . '">' . $CATS['name'][$key] . ' (' . $CATS['userids'][$key] . ' {--USER_IN_CAT--})</option>';
1944                 } // END - foreach
1945         } else {
1946                 // No cateogries are defined yet
1947                 $OUT = '<option class="member_failed">{--MEMBER_NO_CATS--}</option>';
1948         }
1949
1950         // Return HTML code
1951         return $OUT;
1952 }
1953
1954 // Add bonus mail to queue
1955 function addBonusMailToQueue ($subject, $text, $receiverList, $points, $seconds, $url, $cat, $mode='normal', $receiver=0) {
1956         // Is admin or bonus extension there?
1957         if (!isAdmin()) {
1958                 // Abort here
1959                 return false;
1960         } elseif (!isExtensionActive('bonus')) {
1961                 // Abort here
1962                 return false;
1963         }
1964
1965         // Calculcate target sent
1966         $target = countSelection(explode(';', $receiverList));
1967
1968         // Receiver is zero?
1969         if ($receiver == '0') {
1970                 // Then auto-fix it
1971                 $receiver = $target;
1972         } // END - if
1973
1974         // HTML extension active?
1975         if (isExtensionActive('html_mail')) {
1976                 // No HTML by default
1977                 $HTML = 'N';
1978
1979                 // HTML mode?
1980                 if ($mode == 'html') $HTML = 'Y';
1981
1982                 // Add HTML mail
1983                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_bonus`
1984 (`subject`, `text`, `receivers`, `points`, `time`, `data_type`, `timestamp`, `url`, `cat_id`, `target_send`, `mails_sent`, `html_msg`)
1985 VALUES ('%s','%s','%s','%s','%s','NEW', UNIX_TIMESTAMP(),'%s','%s','%s','%s','%s')",
1986                 array(
1987                         $subject,
1988                         $text,
1989                         $receiverList,
1990                         $points,
1991                         $seconds,
1992                         $url,
1993                         $cat,
1994                         $target,
1995                         bigintval($receiver),
1996                         $HTML
1997                 ), __FUNCTION__, __LINE__);
1998         } else {
1999                 // Add regular mail
2000                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_bonus`
2001 (`subject`, `text`, `receivers`, `points`, `time`, `data_type`, `timestamp`, `url`, `cat_id`, `target_send`, `mails_sent`)
2002 VALUES ('%s','%s','%s','%s','%s','NEW', UNIX_TIMESTAMP(),'%s','%s','%s','%s')",
2003                 array(
2004                         $subject,
2005                         $text,
2006                         $receiverList,
2007                         $points,
2008                         $seconds,
2009                         $url,
2010                         $cat,
2011                         $target,
2012                         bigintval($receiver),
2013                 ), __FUNCTION__, __LINE__);
2014         }
2015 }
2016
2017 // Generate a receiver list for given category and maximum receivers
2018 function generateReceiverList ($cat, $receiver, $mode = '') {
2019         // Init variables
2020         $CAT_TABS     = '';
2021         $CAT_WHERE    = '';
2022         $receiverList = '';
2023         $result       = false;
2024
2025         // Secure data
2026         $cat      = bigintval($cat);
2027         $receiver = bigintval($receiver);
2028
2029         // Is the receiver zero and mode set?
2030         if (($receiver == '0') && (!empty($mode))) {
2031                 // Auto-fix receiver maximum
2032                 $receiver = getTotalReceivers($mode);
2033         } // END - if
2034
2035         // Category given?
2036         if ($cat > 0) {
2037                 // Select category
2038                 $CAT_TABS  = "LEFT JOIN `{?_MYSQL_PREFIX?}_user_cats` AS c ON d.userid=c.userid";
2039                 $CAT_WHERE = sprintf(" AND c.cat_id=%s", $cat);
2040         } // END - if
2041
2042         // Exclude users in holiday?
2043         if (getExtensionVersion('holiday') >= '0.1.3') {
2044                 // Add something for the holiday extension
2045                 $CAT_WHERE .= " AND d.`holiday_active`='N'";
2046         } // END - if
2047
2048         if ((isExtensionActive('html_mail')) && ($mode == 'html')) {
2049                 // Only include HTML receivers
2050                 $result = SQL_QUERY_ESC("SELECT d.userid FROM `{?_MYSQL_PREFIX?}_user_data` AS d ".$CAT_TABS." WHERE d.`status`='CONFIRMED' AND d.`html`='Y'".$CAT_WHERE." ORDER BY d.{?order_select?} {?order_mode?} LIMIT %s",
2051                         array(
2052                                 $receiver
2053                         ), __FUNCTION__, __LINE__);
2054         } else {
2055                 // Include all
2056                 $result = SQL_QUERY_ESC("SELECT d.userid FROM `{?_MYSQL_PREFIX?}_user_data` AS d ".$CAT_TABS." WHERE d.`status`='CONFIRMED'".$CAT_WHERE." ORDER BY d.{?order_select?} {?order_mode?} LIMIT %s",
2057                         array(
2058                                 $receiver
2059                         ), __FUNCTION__, __LINE__);
2060         }
2061
2062         // Entries found?
2063         if ((SQL_NUMROWS($result) >= $receiver) && ($receiver > 0)) {
2064                 // Load all entries
2065                 while ($content = SQL_FETCHARRAY($result)) {
2066                         // Add receiver when not empty
2067                         if (!empty($content['userid'])) $receiverList .= $content['userid'] . ';';
2068                 } // END - while
2069
2070                 // Free memory
2071                 SQL_FREERESULT($result);
2072
2073                 // Remove trailing semicolon
2074                 $receiverList = substr($receiverList, 0, -1);
2075         } // END - if
2076
2077         // Return list
2078         return $receiverList;
2079 }
2080
2081 // Get timestamp for given stats type and data
2082 function getTimestampFromUserStats ($type, $data, $userid = '0') {
2083         // Default timestamp is zero
2084         $stamp = '0';
2085
2086         // User id set?
2087         if ((isMemberIdSet()) && ($userid == '0')) {
2088                 $userid = getMemberId();
2089         } // END - if
2090
2091         // Is the extension installed and updated?
2092         if ((!isExtensionActive('sql_patches')) || (isExtensionOlder('sql_patches', '0.5.6'))) {
2093                 // Return zero here
2094                 return $stamp;
2095         } // END - if
2096
2097         // Try to find the entry
2098         $result = SQL_QUERY_ESC("SELECT
2099         UNIX_TIMESTAMP(`inserted`) AS stamp
2100 FROM
2101         `{?_MYSQL_PREFIX?}_user_stats_data`
2102 WHERE
2103         `userid`=%s AND `stats_type`='%s' AND `stats_data`='%s'
2104 LIMIT 1",
2105                 array(
2106                         bigintval($userid),
2107                         $type,
2108                         $data
2109                 ), __FUNCTION__, __LINE__);
2110
2111         // Is the entry there?
2112         if (SQL_NUMROWS($result) == 1) {
2113                 // Get this stamp
2114                 list($stamp) = SQL_FETCHROW($result);
2115         } // END - if
2116
2117         // Free result
2118         SQL_FREERESULT($result);
2119
2120         // Return stamp
2121         return $stamp;
2122 }
2123
2124 // Inserts user stats
2125 function insertUserStatsRecord ($userid, $type, $data) {
2126         // Is the extension installed and updated?
2127         if ((!isExtensionActive('sql_patches')) || (isExtensionOlder('sql_patches', '0.5.6'))) {
2128                 // Return zero here
2129                 return false;
2130         } // END - if
2131
2132         // Does it exist?
2133         if ((!getTimestampFromUserStats($type, $data, $userid)) && (!is_array($data))) {
2134                 // Then insert it!
2135                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_user_stats_data` (`userid`,`stats_type`,`stats_data`) VALUES (%s,'%s','%s')",
2136                         array(bigintval($userid), $type, $data), __FUNCTION__, __LINE__);
2137         } elseif (is_array($data)) {
2138                 // Invalid data!
2139                 logDebugMessage(__FUNCTION__, __LINE__, "userid={$userid},type={$type},data={".gettype($data).": Invalid statistics data type!");
2140         }
2141 }
2142
2143 // "Getter" for array for user refs and points in given level
2144 function getUserReferalPoints ($userid, $level) {
2145         //* DEBUG: */ print("----------------------- <font color=\"#00aa00\">".__FUNCTION__." - ENTRY</font> ------------------------<ul><li>\n");
2146         // Default is no refs and no nickname
2147         $add = '';
2148         $refs = array();
2149
2150         // Do we have nickname extension installed?
2151         if (isExtensionActive('nickname')) {
2152                 $add = ', ud.nickname';
2153         } // END - if
2154
2155         // Get refs from database
2156         $result = SQL_QUERY_ESC("SELECT
2157         ur.id, ur.refid, ud.status, ud.last_online, ud.mails_confirmed, ud.emails_received".$add."
2158 FROM
2159         `{?_MYSQL_PREFIX?}_user_refs` AS ur
2160 LEFT JOIN
2161         `{?_MYSQL_PREFIX?}_user_points` AS up
2162 ON
2163         ur.refid=up.userid AND ur.level=0
2164 LEFT JOIN
2165         `{?_MYSQL_PREFIX?}_user_data` AS ud
2166 ON
2167         ur.refid=ud.userid
2168 WHERE
2169         ur.userid=%s AND ur.level=%s
2170 ORDER BY ur.refid ASC",
2171                 array(
2172                         bigintval($userid),
2173                         bigintval($level)
2174                 ), __FUNCTION__, __LINE__);
2175
2176         // Are there some entries?
2177         if (SQL_NUMROWS($result) > 0) {
2178                 // Fetch all entries
2179                 while ($row = SQL_FETCHARRAY($result)) {
2180                         // Get total points of this user
2181                         $row['points'] = countSumTotalData($row['refid'], 'user_points', 'points') - countSumTotalData($row['refid'], 'user_data', 'used_points');
2182
2183                         // Get unconfirmed mails
2184                         $row['unconfirmed']  = countSumTotalData($row['refid'], 'user_links', 'id', 'userid', true);
2185
2186                         // Init clickrate with zero
2187                         $row['clickrate'] = '0';
2188
2189                         // Is at least one mail received?
2190                         if ($row['emails_received'] > 0) {
2191                                 // Calculate clickrate
2192                                 $row['clickrate'] = ($row['mails_confirmed'] / $row['emails_received'] * 100);
2193                         } // END - if
2194
2195                         // Activity is 'active' by default because if autopurge is not installed
2196                         $row['activity'] = getMessage('MEMBER_ACTIVITY_ACTIVE');
2197
2198                         // Is autopurge installed and the user inactive?
2199                         if ((isExtensionActive('autopurge')) && ((time() - getConfig('ap_inactive_since')) >= $row['last_online']))  {
2200                                 // Inactive user!
2201                                 $row['activity'] = getMessage('MEMBER_ACTIVITY_INACTIVE');
2202                         } // END - if
2203
2204                         // Remove some entries
2205                         unset($row['mails_confirmed']);
2206                         unset($row['emails_received']);
2207                         unset($row['last_online']);
2208
2209                         // Add row
2210                         $refs[$row['id']] = $row;
2211                 } // END - while
2212         } // END - if
2213
2214         // Free result
2215         SQL_FREERESULT($result);
2216
2217         // Return result
2218         //* DEBUG: */ print("</li></ul>----------------------- <font color=\"#aa0000\">".__FUNCTION__." - EXIT</font> ------------------------<br />");
2219         return $refs;
2220 }
2221
2222 // Recuce the amount of received emails for the receipients for given email
2223 function reduceRecipientReceivedMails ($column, $id, $count) {
2224         // Search for mail in database
2225         $result = SQL_QUERY_ESC("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_links` WHERE `%s`=%s ORDER BY `userid` ASC LIMIT %s",
2226                 array($column, bigintval($id), $count), __FUNCTION__, __LINE__);
2227
2228         // Are there entries?
2229         if (SQL_NUMROWS($result) > 0) {
2230                 // Now load all userids for one big query!
2231                 // @TODO This can be somehow rewritten
2232                 $UIDs = array();
2233                 while (list($userid) = SQL_FETCHROW($result)) {
2234                         $UIDs[$userid] = $userid;
2235                 } // END - while
2236
2237                 // Now update all user accounts
2238                 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `emails_received`=`emails_received`-1 WHERE `userid` IN (%s) LIMIT %s",
2239                         array(implode(',', $UIDs), count($UIDs)), __FUNCTION__, __LINE__);
2240         } // END - if
2241
2242         // Free result
2243         SQL_FREERESULT($result);
2244 }
2245
2246 // Creates a new task
2247 function createNewTask ($subject, $notes, $taskType, $userid = '0', $adminId = '0', $strip = true) {
2248         // Insert the task data into the database
2249         SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_task_system` (`assigned_admin`, `userid`, `status`, `task_type`, `subject`, `text`, `task_created`) VALUES (%s,%s,'NEW','%s','%s','%s', UNIX_TIMESTAMP())",
2250                 array($adminId, $userid, $taskType, $subject, escapeQuotes($notes)), __FUNCTION__, __LINE__, true, $strip);
2251 }
2252
2253 // Updates last module / online time
2254 // @TODO Fix inconsistency between last_module and getWhat()
2255 function updateLastActivity($userid) {
2256         // Run the update query
2257         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `last_module`='%s', `last_online`=UNIX_TIMESTAMP(), `REMOTE_ADDR`='%s' WHERE `userid`=%s LIMIT 1",
2258                 array(
2259                         getWhat(),
2260                         detectRemoteAddr(),
2261                         bigintval($userid)
2262                 ), __FUNCTION__, __LINE__);
2263 }
2264
2265 // [EOF]
2266 ?>