From 3e1b4793a205f5ee44ab03395a9379ad22a80cb5 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Wed, 17 Nov 2010 04:10:52 +0000 Subject: - Patch #953914 by chx, yched, pifantastic: #limit_validation_errors() fails is parents array contains numeric indexes. --- includes/form.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes') diff --git a/includes/form.inc b/includes/form.inc index 02f82725e..fe98eaee1 100644 --- a/includes/form.inc +++ b/includes/form.inc @@ -1449,7 +1449,7 @@ function form_set_error($name = NULL, $message = '', $limit_validation_errors = // so errors for this element must be recorded. As the exploded array // will all be strings, we need to cast every value of the section // array to string. - if (explode('][', $name, count($section)) === array_map('strval', $section)) { + if (array_slice(explode('][', $name), 0, count($section)) === array_map('strval', $section)) { $record = TRUE; break; } -- cgit v1.2.3