X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_mods.php;h=dee6e47d26f7ad2e2efc5993a7f576e325d99972;hb=00974432ffe0ed217b993e1ea5aaaac7dc31e82b;hp=a24778f086571447660db9df84192b4f79290621;hpb=18e32f1a8971b18bace4f051094acf27800bd7d9;p=mailer.git diff --git a/inc/modules/admin/what-config_mods.php b/inc/modules/admin/what-config_mods.php index a24778f086..dee6e47d26 100644 --- a/inc/modules/admin/what-config_mods.php +++ b/inc/modules/admin/what-config_mods.php @@ -125,44 +125,38 @@ if (isFormSent('edit')) { if (countPostSelection() == 0) { // Load module data (We do not need to check if there's at least one...) - $result = SQL_QUERY('SELECT id, module, locked, hidden, admin_only, title, mem_only -FROM `{?_MYSQL_PREFIX?}_mod_reg` -ORDER BY module', __FILE__, __LINE__); + $result = SQL_QUERY('SELECT + `id`, `module`, `locked`, `hidden`, `admin_only`, `title`, `mem_only` +FROM + `{?_MYSQL_PREFIX?}_mod_reg` +ORDER BY + `module` ASC', __FILE__, __LINE__); + $OUT = ''; $SW = 2; while ($content = SQL_FETCHARRAY($result)) { // Reset title to --- if it is NULL if (empty($content['title'])) $content['title'] = '---'; if (($content['module'] == 'index') || ($content['module'] == 'login')) { // Add link to detail statistics - $content['module'] = "" . $content['module'] . ""; + $content['module'] = '' . $content['module'] . ''; } // END - if // Prepare array for the template - // @TODO Rewritings: mod->module in template - $content = array( - 'sw' => $SW, - 'id' => $content['id'], - 'mod' => $content['module'], - 'title' => $content['title'], - 'locked' => translateYesNo($content['locked']), - 'hidden' => translateYesNo($content['hidden']), - 'admin' => translateYesNo($content['admin_only']), - 'mem' => translateYesNo($content['mem_only']), - ); + $content['sw'] = $SW; // Load row template $OUT .= loadTemplate('admin_list_mods_row', true, $content); // Switch colors $SW = 3 - $SW; - } + } // END - while // Free memory SQL_FREERESULT($result); // Load main template loadTemplate('admin_list_mods', false, $OUT); -} +} // END - if // [EOF] ?>