Repeat Go button every 15 rows globally and not per record.
This commit is contained in:
@@ -11,6 +11,8 @@ $Source$
|
|||||||
for generating INSERT and UPDATE queries (also fixes bug #953250).
|
for generating INSERT and UPDATE queries (also fixes bug #953250).
|
||||||
* tbl_replace_fields.php: When field is not set, it is not set :-) (bug
|
* tbl_replace_fields.php: When field is not set, it is not set :-) (bug
|
||||||
#953295).
|
#953295).
|
||||||
|
* tbl_change.php: Repeat Go button every 15 rows globally and not per
|
||||||
|
record.
|
||||||
|
|
||||||
2004-05-12 Marc Delisle <lem9@users.sourceforge.net>
|
2004-05-12 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* db_details_structure.php: bug #951143, undefined $header_url_qry
|
* db_details_structure.php: bug #951143, undefined $header_url_qry
|
||||||
|
@@ -260,7 +260,7 @@ foreach($loop_array AS $vrowcount => $vrow) {
|
|||||||
// (wanted to use an <a href="#bottom"> and <a name> instead,
|
// (wanted to use an <a href="#bottom"> and <a name> instead,
|
||||||
// but it didn't worked because of the <base href>)
|
// but it didn't worked because of the <base href>)
|
||||||
|
|
||||||
if ((($i % 15) == 0) && ($i != 0)) {
|
if ((($o_rows * $fields_cnt + $i) % 15 == 0) && ($i + $o_rows != 0)) {
|
||||||
?>
|
?>
|
||||||
<tr>
|
<tr>
|
||||||
<th colspan="5" align="right">
|
<th colspan="5" align="right">
|
||||||
|
Reference in New Issue
Block a user