From d7c7aae61e567ecf3f13c1218550c06a7035f58e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sun, 26 Jul 2009 20:17:43 +0000 Subject: [PATCH] (Possible) fixes for illegal array indexes --- inc/libs/register_functions.php | 2 +- inc/modules/admin/what-admins_edit.php | 2 +- inc/modules/admin/what-config_points.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/inc/libs/register_functions.php b/inc/libs/register_functions.php index b0230f73da..19f26b4ef1 100644 --- a/inc/libs/register_functions.php +++ b/inc/libs/register_functions.php @@ -133,7 +133,7 @@ function registerGenerateCategoryTable ($mode, $return=false) { // Is the array element not set? if (!REQUEST_ISSET_POST('cat', $content['id'])) { // Then set it - REQUEST_SET_POST(array('cat', $content['id']), ''); + REQUEST_SET_POST('cat' => array($content['id'] => '')); } // END - if // Prepare array for the template diff --git a/inc/modules/admin/what-admins_edit.php b/inc/modules/admin/what-admins_edit.php index e0528331ae..45c18bfeac 100644 --- a/inc/modules/admin/what-admins_edit.php +++ b/inc/modules/admin/what-admins_edit.php @@ -55,7 +55,7 @@ if (REQUEST_ISSET_GET('admin')) { // Set required fields REQUEST_SET_POST('edit', '1'); - REQUEST_SET_POST(array('sel', $aid), '1'); + REQUEST_SET_POST('sel', array($aid => '1')); } // END - if if ((REQUEST_ISSET_POST('edit')) && (countPostSelection() > 0)) { diff --git a/inc/modules/admin/what-config_points.php b/inc/modules/admin/what-config_points.php index 6cfa96aa66..0fd1f0b3a1 100644 --- a/inc/modules/admin/what-config_points.php +++ b/inc/modules/admin/what-config_points.php @@ -93,7 +93,7 @@ if (isFormSent()) { $id = bigintval($id); // Revert german commata - REQUEST_SET_POST(array('perc', $id), convertCommaToDot(REQUEST_POST('perc', $id))); + REQUEST_SET_POST('perc' => array($id => convertCommaToDot(REQUEST_POST('perc', $id)))); // Update entry SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_refdepths` SET level='%s', percents='%s' WHERE `id`=%s LIMIT 1", -- 2.30.2