equal
deleted
inserted
replaced
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 } |