]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-repair_cats.php
A lot CSS classes rewritten, please update all your themes.
[mailer.git] / inc / modules / admin / what-repair_cats.php
index 75877ffb890c4290a9fcfa9b77c40b98138bb24c..1ee75c4bfc690043296862d5cae6113f583e4ae1 100644 (file)
@@ -8,7 +8,7 @@
  * -------------------------------------------------------------------- *
  * Short description : Repairs category selections                      *
  * -------------------------------------------------------------------- *
- * Kurzbeschreibung  : Repariert Kategorieauswahlen                     *
+ * Kurzbeschreibung  : Repariert Kategorien                             *
  * -------------------------------------------------------------------- *
  * $Revision::                                                        $ *
  * $Date::                                                            $ *
@@ -18,6 +18,7 @@
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -46,7 +47,7 @@ addMenuDescription('admin', __FILE__);
 
 // Go through all categories
 $result = SQL_QUERY("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_cats` GROUP BY `userid` ORDER BY `userid` ASC", __FILE__, __LINE__);
-if (SQL_NUMROWS($result) > 0) {
+if (!SQL_HASZERONUMS($result)) {
         // Nothing is removed for now... ;-)
        $REMOVED = '0';
 
@@ -58,22 +59,19 @@ if (SQL_NUMROWS($result) > 0) {
                        SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_cats` WHERE `userid`=%s",
                                array(bigintval($content['userid'])), __FILE__, __LINE__);
                        $REMOVED += SQL_AFFECTEDROWS();
-               } else {
-                       // Free memory
-                       SQL_FREERESULT($result_user);
-               }
+               } // END - if
        } // END - while
 
        if ($REMOVED > 0) {
                // Entries repaired
-               $content = sprintf(getMessage('ADMIN_REPAIR_ENTRIES_FIXED'), $REMOVED);
+               $content = getMaskedMessage('ADMIN_REPAIR_ENTRIES_FIXED', $REMOVED);
        } else {
                // Nothing repaired
-               $content = "<div class=\"admin_failed\">{--ADMIN_REPAIR_NOTHING_FIXED--}</div>";
+               $content = '<div class="notice">{--ADMIN_REPAIR_NOTHING_FIXED--}</div>';
        }
 } else {
        // No category selections found, no members registered?
-       $content = "<div class=\'admin_failed\">{--ADMIN_REPAIR_CATS_NOTHING--}</div>";
+       $content = '<div class="notice">{--ADMIN_REPAIR_CATEGORIES_NOTHING--}</div>';
 }
 
 // Load template