Fixes for stripped HTML tags, and false warnings in debug log
[mailer.git] / inc / modules / admin / what-chk_regs.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 09/28/2003 *
4  * ===============                              Last change: 03/24/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-chk_regs.php                                *
8  * -------------------------------------------------------------------- *
9  * Short description : Check new registrations                          *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Neue Anmeldungen pruefen                         *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 // Add description as navigation point
41 ADD_DESCR ("admin", basename(__FILE__));
42
43 // Check for accounts
44 $result = SQL_QUERY("SELECT userid, gender, surname, family, email, REMOTE_ADDR, refid, user_hash
45 FROM `{!_MYSQL_PREFIX!}_user_data`
46 WHERE `status`='UNCONFIRMED'
47 ORDER BY userid ASC", __FILE__, __LINE__);
48
49 if (SQL_NUMROWS($result) > 0) {
50         // We have some (new?) registrations!
51         $SW = 2; $OUT = "";
52         while (list($uid, $gender, $sname, $fname, $email, $IP, $ref, $hash) = SQL_FETCHROW($result)) {
53                 if ($ref > 0) $ref = ADMIN_USER_PROFILE_LINK($ref);
54                 // Prepare array for the row template
55                 $content = array(
56                         'sw'     => $SW,
57                         'gender' => TRANSLATE_GENDER($gender),
58                         'sname'  => $sname,
59                         'fname'  => $fname,
60                         'email'  => "<a href=\"".CREATE_EMAIL_LINK($email, "user_data")."\">".$email."</a>",
61                         'ip'     => $IP,
62                         'ref'    => $ref,
63                         'hash'   => $hash,
64                         'link'   => ADMIN_USER_PROFILE_LINK($uid),
65                 );
66
67                 // Load row template and switch color
68                 $OUT .= LOAD_TEMPLATE("admin_reg_row", true, $content);
69                 $SW = 3 - $SW;
70         }
71
72         // Remember rows
73         define('__REG_ROWS', $OUT);
74
75         // Load main template
76         LOAD_TEMPLATE("admin_reg");
77 } else {
78         // No registrations left - or all has confirmed their email address... :-)
79         LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_ALL_CONFIRMED_EMAIL'));
80 }
81
82 // Free memory
83 SQL_FREERESULT($result);
84
85 //
86 ?>