[PHPLIB-DEV] bug in table.inc From: Spruce Weber (sprucely <email protected>)
Date: 04/03/00

I've discovered a bug that causes show_page() to never display any rows.

In the member function show_table_page_rows(), $key and $val aren't
available like they are in show_table_rows(). Yet they are in the call to
$this->table_row(). I commented out the line in question, replaced it with
what I think is right, and everything seemed to work okay after that...

    for ($row = $start; $row < $max; $row++)
    {
      ## Process a single row
      //$this->table_row($row, $key, $val, $class);
      $this->table_row($row, $row, $ary[$row], $class);
    }
______________________________________________________
Get Your Private, Free Email at http://www.hotmail.com

-
PHPLIB Developers Mailing List. Send messages to <phplib-dev <email protected>>.
To unsubscribe, send "unsubscribe" to <phplib-dev-request <email protected>> in
the body, not the subject, of your message.