Update of /cvsroot/phplib/php-lib/php/html
In directory usw-pr-cvs1:/tmp/cvs-serv4199
Modified Files:
table.inc
Log Message:
Sync with -stable tree:
Bug #445386: replace print_array($d) calls with $this->print_array($d)
Bug #445387: replace $key, $val with $row, $ary[$row] in show_table_page_rows()
Bug #445389: delete $found=1 in table_heading_cell()
Replace tabs with spaces
Globally apply the One True Brace Style for consistency with the rest of PHPLIB
Globally insert braces around one-line conditionals
Remove irrelevant comments
Index: table.inc
===================================================================
RCS file: /cvsroot/phplib/php-lib/php/html/table.inc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** table.inc 25 Apr 2002 02:33:06 -0000 1.2
--- table.inc 25 Apr 2002 04:55:52 -0000 1.3
***************
*** 38,43 ****
#==========================================================================
! class Table
! {
var $classname = "Table"; ## Persistence Support
--- 38,42 ----
#==========================================================================
! class Table {
[...1008 lines suppressed...]
#==========================================================================
! function table_heading_row_add_extra($data, $class="") {
! }
#==========================================================================
***************
*** 987,992 ****
# History :
#==========================================================================
! function table_row_add_extra($row, $row_key, $data, $class="")
! {}
}
?>
--- 962,967 ----
# History :
#==========================================================================
! function table_row_add_extra($row, $row_key, $data, $class="") {
! }
}
?>
|