X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_mods.php;h=fe79655097f2b6ebd68097b9359664a025001502;hb=65ed873eefdacdcea3331773b6458a06a5adff82;hp=453ee27b54248aaa8dd7bf6ea17ba9acb5b281b4;hpb=263a089d8a499e0e26d0af9e7aa7639f88b8ca60;p=mailer.git diff --git a/inc/modules/admin/what-config_mods.php b/inc/modules/admin/what-config_mods.php index 453ee27b54..fe79655097 100644 --- a/inc/modules/admin/what-config_mods.php +++ b/inc/modules/admin/what-config_mods.php @@ -1,7 +1,7 @@ $sel) { // Load module data - $result = SQL_QUERY_ESC("SELECT module, title, locked, hidden, admin_only, mem_only FROM `{?_MYSQL_PREFIX?}_mod_reg` WHERE `id`=%s LIMIT 1", - array(bigintval($id)), __FILE__, __LINE__); - list($mod, $title, $locked, $hidden, $admin, $mem) = SQL_FETCHROW($result); + // @TODO This can be moved into mysql-function.php, see checkModulePermissions() function + $result = SQL_QUERY_ESC("SELECT `module`, `title`, `locked`, `hidden`, `admin_only`, `mem_only` FROM `{?_MYSQL_PREFIX?}_mod_reg` WHERE `id`=%s LIMIT 1", + array(bigintval($id)), __FILE__, __LINE__); + + // Load data + $data = SQL_FETCHARRAY($result); + + // Free result SQL_FREERESULT($result); // Prepare array for the template $content = array( 'sw' => $SW, - 'mod' => $mod, + 'mod' => $data['module'], 'id' => $id, - 'title' => $title, - 'locked' => addSelectionBox('yn', $locked, 'locked', $id), - 'hidden' => addSelectionBox('yn', $hidden, 'hidden', $id), - 'admin' => addSelectionBox('yn', $admin , 'admin' , $id), - 'mem' => addSelectionBox('yn', $mem , 'member', $id), + 'title' => $data['title'], + 'locked' => addSelectionBox('yn', $data['locked'] , 'locked', $id), + 'hidden' => addSelectionBox('yn', $data['hidden'] , 'hidden', $id), + 'admin' => addSelectionBox('yn', $data['admin_only'], 'admin' , $id), + 'mem' => addSelectionBox('yn', $data['mem_only'] , 'member', $id), ); // Load row template $OUT .= loadTemplate('admin_mods_edit_row', true, $content); - } + } // END - foreach // Load main template loadTemplate('admin_mods_edit', false, $OUT); @@ -128,8 +133,8 @@ ORDER BY module', __FILE__, __LINE__); 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