BUG 7345 FIX. Correction of '=' missed in comparation sentence.

This commit is contained in:
Enrique Ponce De Leon
2011-08-02 15:55:21 -04:00
parent 5e275bbf0e
commit ca183a8afc

View File

@@ -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;
}
?>
?>