From ca183a8afc784ec523fc14ad8c4961bdbe340a06 Mon Sep 17 00:00:00 2001 From: Enrique Ponce De Leon Date: Tue, 2 Aug 2011 15:55:21 -0400 Subject: [PATCH] BUG 7345 FIX. Correction of '=' missed in comparation sentence. --- gulliver/methods/defaultAjax.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulliver/methods/defaultAjax.php b/gulliver/methods/defaultAjax.php index 8a10c3f22..51afac5a2 100644 --- a/gulliver/methods/defaultAjax.php +++ b/gulliver/methods/defaultAjax.php @@ -79,7 +79,7 @@ foreach ($newValues as $key => $values){ for ($r2=1; $r2 <= $_POST['row']; $r2++){ foreach ($values as $class => $value){ - if ($class = $_POST['grid']){ + if ($class == $_POST['grid']){ $value = (array) $value; $arrayK = $value[$r2]; foreach ($arrayK as $key2 => $val) { @@ -219,4 +219,4 @@ } return $myDependentFields; } -?> \ No newline at end of file +?>