A lot texts rewritten and exclamation signs removed
[mailer.git] / inc / modules / admin / what-config_admins.php
index 71e05e601e913002beeb72983a954551a81873d0..5d36456f403c3d47398ea4a334e9365e2ede0b1a 100644 (file)
@@ -51,7 +51,7 @@ if ((isPostRequestElementSet('edit')) && ($SEL > 0)) {
        // Edit ACLs
        $OUT = ''; $SW = 2;
        foreach (postRequestElement('sel') as $id => $selected) {
-               // Load data for the ID
+               // Load data for the id
                $result = SQL_QUERY_ESC("SELECT admin_id, action_menu, what_menu, access_mode FROM `{?_MYSQL_PREFIX?}_admins_acls` WHERE `id`=%s LIMIT 1",
                        array(bigintval($id)), __FILE__, __LINE__);
                list($adminId, $action, $what, $mode) = SQL_FETCHROW($result);
@@ -85,7 +85,7 @@ if ((isPostRequestElementSet('edit')) && ($SEL > 0)) {
 } elseif ((isPostRequestElementSet('change')) && ($SEL > 0)) {
        // Change entries
        foreach (postRequestElement('sel') as $id => $selected) {
-               // Secure ID
+               // Secure id
                $id = bigintval($id);
 
                // Update entries
@@ -110,7 +110,7 @@ if ((isPostRequestElementSet('edit')) && ($SEL > 0)) {
        // Delete ACLs
        $OUT = ''; $SW = 2;
        foreach (postRequestElement('sel') as $id => $selected) {
-               // Load data for the ID
+               // Load data for the id
                $result = SQL_QUERY_ESC("SELECT admin_id, action_menu, what_menu, access_mode FROM `{?_MYSQL_PREFIX?}_admins_acls` WHERE `id`=%s LIMIT 1",
                        array(bigintval($id)), __FILE__, __LINE__);
                list($admin, $action, $what, $mode) = SQL_FETCHROW($result);