]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_mods.php
Fix for missing array elements
[mailer.git] / inc / modules / admin / what-config_mods.php
index fe79655097f2b6ebd68097b9359664a025001502..57c7327e0e5582beaa4b6fa6020457b9dca05b8a 100644 (file)
@@ -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 *
@@ -44,14 +45,14 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 // Add description as navigation point
 addMenuDescription('admin', __FILE__);
 
-if (isPostRequestElementSet('edit')) {
+if (isPostRequestParameterSet('edit')) {
        // Check if at least one module is selected
        if (countPostSelection() > 0) {
                // Output header
                $OUT = ''; $SW = 2;
 
                // Edit selected modules
-               foreach (postRequestElement('sel') as $id => $sel) {
+               foreach (postRequestParameter('sel') as $id => $sel) {
                        // Load module data
                        // @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",
@@ -86,26 +87,26 @@ if (isPostRequestElementSet('edit')) {
                loadTemplate('admin_settings_saved', false, getMessage('MODS_NOTHING_SELECTED'));
 
                // Remove maybe confusing data
-               unsetPostRequestElement('edit');
-               unsetPostRequestElement('change');
+               unsetPostRequestParameter('edit');
+               unsetPostRequestParameter('change');
        }
-} elseif (isPostRequestElementSet('change')) {
+} elseif (isPostRequestParameterSet('change')) {
        // Init SQLs
        initSqls();
 
        // Change modules
-       foreach (postRequestElement('sel') as $id => $sel) {
+       foreach (postRequestParameter('sel') as $id => $sel) {
                // Secure id number
                $id = bigintval($id);
 
                // Update module
                addSql(SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_mod_reg` SET `title`='%s', `locked`='%s', `hidden`='%s', `admin_only`='%s', `mem_only`='%s' WHERE `id`=%s LIMIT 1",
                        array(
-                               postRequestElement('title', $id),
-                               postRequestElement('locked', $id),
-                               postRequestElement('hidden', $id),
-                               postRequestElement('admin', $id),
-                               postRequestElement('member', $id),
+                               postRequestParameter('title', $id),
+                               postRequestParameter('locked', $id),
+                               postRequestParameter('hidden', $id),
+                               postRequestParameter('admin', $id),
+                               postRequestParameter('member', $id),
                                $id
                        ),  __FILE__, __LINE__, false));
        }
@@ -114,7 +115,7 @@ if (isPostRequestElementSet('edit')) {
        runFilterChain('run_sqls');
 
        // Remove cache file if version matches
-       if (getExtensionVersion('cache') >= '0.1.2') {
+       if (isExtensionInstalledAndNewer('cache', '0.1.2')) {
                if ($GLOBALS['cache_instance']->loadCacheFile('modules')) $GLOBALS['cache_instance']->removeCacheFile();
        } // END - if
 
@@ -122,7 +123,7 @@ if (isPostRequestElementSet('edit')) {
        loadTemplate('admin_settings_saved', false, getMessage('MODS_CHANGED'));
 }
 
-if (countPostSelection() == '0') {
+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`