@@ 42-42 (lines=1) @@ | ||
39 | for ($x=0, $y=sizeof($contents[$i]); $x<$y; $x++) { |
|
40 | if (isset($contents[$i][$x]['text']) && tep_not_null($contents[$i][$x]['text'])) { |
|
41 | $tableBox_string .= ' <td'; |
|
42 | if (isset($contents[$i][$x]['align']) && tep_not_null($contents[$i][$x]['align'])) $tableBox_string .= ' align="' . $contents[$i][$x]['align'] . '"'; |
|
43 | if (isset($contents[$i][$x]['params']) && tep_not_null($contents[$i][$x]['params'])) { |
|
44 | $tableBox_string .= ' ' . $contents[$i][$x]['params']; |
|
45 | } elseif (tep_not_null($this->table_data_parameters)) { |
|
@@ 49-49 (lines=1) @@ | ||
46 | $tableBox_string .= ' ' . $this->table_data_parameters; |
|
47 | } |
|
48 | $tableBox_string .= '>'; |
|
49 | if (isset($contents[$i][$x]['form']) && tep_not_null($contents[$i][$x]['form'])) $tableBox_string .= $contents[$i][$x]['form']; |
|
50 | $tableBox_string .= $contents[$i][$x]['text']; |
|
51 | if (isset($contents[$i][$x]['form']) && tep_not_null($contents[$i][$x]['form'])) $tableBox_string .= '</form>'; |
|
52 | $tableBox_string .= '</td>' . "\n"; |