Removed comment introduced by Profi-Concept, this comment should fine (in a much...
[mailer.git] / inc / modules / admin / what-repair_cats.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 04/24/2004 *
4  * ===================                          Last change: 04/24/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-repair_cats.php                             *
8  * -------------------------------------------------------------------- *
9  * Short description : Repairs category selections                      *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Repariert Kategorien                             *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
20  * For more information visit: http://www.mxchange.org                  *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if ((!defined('__SECURITY')) || (!isAdmin())) {
40         die();
41 } // END - if
42
43 // Add description as navigation point
44 addMenuDescription('admin', __FILE__);
45
46 // Go through all categories
47 $result = SQL_QUERY("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_cats` GROUP BY `userid` ORDER BY `userid` ASC", __FILE__, __LINE__);
48 if (!SQL_HASZERONUMS($result)) {
49          // Nothing is removed for now... ;-)
50         $REMOVED = '0';
51
52         // Check if found userid is also found in user_data table
53         while ($content = SQL_FETCHARRAY($result)) {
54                 // Is the account not there?
55                 if (!fetchUserData($content['userid'])) {
56                         // Ok, we found something to remove
57                         SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_cats` WHERE `userid`=%s",
58                                 array(bigintval($content['userid'])), __FILE__, __LINE__);
59                         $REMOVED += SQL_AFFECTEDROWS();
60                 } // END - if
61         } // END - while
62
63         if ($REMOVED > 0) {
64                 // Entries repaired
65                 $content = getMaskedMessage('ADMIN_REPAIR_ENTRIES_FIXED', $REMOVED);
66         } else {
67                 // Nothing repaired
68                 $content = '<div class="notice">{--ADMIN_REPAIR_NOTHING_FIXED--}</div>';
69         }
70 } else {
71         // No category selections found, no members registered?
72         $content = '<div class="notice">{--ADMIN_REPAIR_CATEGORIES_NOTHING--}</div>';
73 }
74
75 // Load template
76 loadTemplate('admin_settings_saved', false, $content);
77
78 // [EOF]
79 ?>