Quick Search:

Mode

Context

Displaying 3 lines of context. None | Less | More | Full

Other Diffs

Ignore

Blank Lines Whitespace:

Diff

1739
 
1745
 
1745
 
table_block.php
_> 11 <?php
  22 /*
<> 3 -  $Id: table_block.php 1739 2007-12-20 00:52:16Z hpdl $
   3+  $Id: table_block.php 1745 2007-12-21 02:29:49Z hpdl $
44 
  55   osCommerce, Open Source E-Commerce Solutions
  66   http://www.oscommerce.com
     
 !
4141 
  4242         if (isset($contents[$i][0]) && is_array($contents[$i][0])) {
  4343           for ($x=0, $y=sizeof($contents[$i]); $x<$y; $x++) {
<> 44 -            if (isset($contents[$i][$x]['text']) && tep_not_null(isset($contents[$i][$x]['text']))) {
   44+            if (isset($contents[$i][$x]['text']) && tep_not_null($contents[$i][$x]['text'])) {
4545               $tableBox_string .= '    <td';
  4646               if (isset($contents[$i][$x]['align']) && tep_not_null($contents[$i][$x]['align'])) $tableBox_string .= ' align="' . $contents[$i][$x]['align'] . '"';
<> 47 -              if (isset($contents[$i][$x]['params']) && tep_not_null(isset($contents[$i][$x]['params']))) {
   47+              if (isset($contents[$i][$x]['params']) && tep_not_null($contents[$i][$x]['params'])) {
<_ 4848                 $tableBox_string .= ' ' . $contents[$i][$x]['params'];
  4949               } elseif (tep_not_null($this->table_data_parameters)) {
  5050                 $tableBox_string .= ' ' . $this->table_data_parameters;