Update of /cvsroot/phplib/php-lib-stable/php
In directory usw-pr-cvs1:/tmp/cvs-serv3583
Modified Files:
table.inc
Log Message:
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-stable/php/table.inc,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** table.inc 25 Apr 2002 02:32:10 -0000 1.3
--- table.inc 25 Apr 2002 04:55:34 -0000 1.4
***************
*** 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="") {
! }
}
?>
|