From 18f3bfb947935de2b20c9cff2ce6e4f2cb55793c Mon Sep 17 00:00:00 2001 From: quix0r Date: Fri, 6 Mar 2009 18:20:44 +0000 Subject: [PATCH] Fix for 'array-to-string-conversion' bug in request-functions.php --- inc/request-functions.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/inc/request-functions.php b/inc/request-functions.php index 740f7bd52e..61fdcbb916 100644 --- a/inc/request-functions.php +++ b/inc/request-functions.php @@ -164,6 +164,9 @@ function REQUEST_SET_POST ($element, $value) { // And run it eval($eval); + } elseif (is_array($value)) { + // Value is an array so set it directly + $_POST[SQL_ESCAPE($element)] = $value; } else { // Set regular entry $_POST[SQL_ESCAPE($element)] = SQL_ESCAPE($value); -- 2.39.5