includes/functions.php
changeset 74 68469a95658d
parent 73 0a74676a2f2f
child 76 608dee512bf0
equal deleted inserted replaced
73:0a74676a2f2f 74:68469a95658d
  1961       $cls = ( $cls == 'row1' ) ? 'row2' : 'row1';
  1961       $cls = ( $cls == 'row1' ) ? 'row2' : 'row1';
  1962       foreach ( $row as $j => $val )
  1962       foreach ( $row as $j => $val )
  1963       {
  1963       {
  1964         if ( isset($callers[$j]) )
  1964         if ( isset($callers[$j]) )
  1965         {
  1965         {
  1966           $tmp = ( is_callable($callers[$j]) ) ? @call_user_func($callers[$j], $val, $row) : $v;
  1966           $tmp = ( is_callable($callers[$j]) ) ? @call_user_func($callers[$j], $val, $row) : $val;
  1967           
  1967           
  1968           if ( $tmp )
  1968           if ( $tmp )
  1969           {
  1969           {
  1970             $row[$j] = $tmp;
  1970             $row[$j] = $tmp;
  1971           }
  1971           }