Fix for rewritting code #5
authorRoland Häder <roland@mxchange.org>
Wed, 18 Nov 2009 04:30:53 +0000 (04:30 +0000)
committerRoland Häder <roland@mxchange.org>
Wed, 18 Nov 2009 04:30:53 +0000 (04:30 +0000)
inc/modules/admin/what-admins_mails.php

index fc6a658a08cfdbdfff47cbf3fe7439b27c504b2e..995060ba3ae40523e4f47e7469b455474efb6204 100644 (file)
@@ -39,7 +39,7 @@
 // Some security stuff...
 if ((!defined('__SECURITY')) || (!isAdmin())) {
        die();
-}
+} // END - if
 
 // Add description as navigation point
 addMenuDescription('admin', __FILE__);
@@ -55,7 +55,7 @@ if (isPostRequestElementSet('edit')) {
                        $result = SQL_QUERY_ESC("SELECT `admin_id`, `id` FROM `{?_MYSQL_PREFIX?}_admins_mails` WHERE `mail_template`='%s' ORDER BY `id` ASC",
                                array($template), __FILE__, __LINE__);
                        $OUT = '';
-                       $adminId2 = '0';
+                       $adminId2 = '0'; $id = '0';
                        while ($content = SQL_FETCHARRAY($result)) {
                                // @TODO Can this be rewritten???
                                $OUT .= "<select name=\"admin_id[".$content['id']."]\" size=\"1\" class=\"admin_select\">
@@ -72,13 +72,14 @@ if (isPostRequestElementSet('edit')) {
 
                                // Transfer ids
                                $adminId2 = $content['admin_id'];
-                               $id2 = $content['id'];
+                               $id = $content['id'];
                        } // END - while
 
                        // Free memory
                        SQL_FREERESULT($result);
 
                        // Prepare content
+                       $content['id']            = $id;
                        $content['sw']            = $SW;
                        $content['mail_template'] = $template;
                        $content['admins']        = $adminsList;