invalid xhtml statement

This commit is contained in:
Loïc Chapeaux
2002-01-03 11:18:07 +00:00
parent 890073e60f
commit 0e7fc3d909
2 changed files with 19 additions and 16 deletions

View File

@@ -5,18 +5,21 @@ phpMyAdmin - Changelog
$Id$
$Source$
2001-01-03 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* db_details.php3: invalid xhtml statements.
2002-01-02 Marc Delisle <lem9@users.sourceforge.net>
* db_details.php3, libraries/functions.js: feature 474742: add
check all/uncheck all in the table list
* db_details.php3, libraries/functions.js: feature 474742: add check
all/uncheck all in the table list.
2002-01-01 Marc Delisle <lem9@users.sourceforge.net>
* tbl_replace.php3, bug 497919: $funcs was being reset()
but was not defined (for example, only 1 field of type 'set')
* tbl_replace.php3, bug 497919: $funcs was being reset() but was not
defined (for example, only 1 field of type 'set').
2001-12-29 Marc Delisle <lem9@users.sourceforge.net>
* tbl_change.php3, tbl_replace.php3, Documentation.html:
feature 442855: checkboxes for null values,
modifications by Marc and Lo<4C>c
* tbl_change.php3, tbl_replace.php3, Documentation.html:
feature 442855: checkboxes for null values, modifications by Marc and
Lo<4C>c.
2001-12-29 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* header.inc.php3, lines 60-62; libraries/defines.lib.php3, lines 102-103;

View File

@@ -147,7 +147,7 @@ if ($num_tables == 0) {
// 2. Shows table informations on mysql >= 3.23 - staybyte - 11 June 2001
else if (PMA_MYSQL_INT_VERSION >= 32300) {
?>
<form name="tablesForm" action="db_details.php3" method="post">
<form method="post" action="db_details.php3" name="tablesForm">
<input type="hidden" name="lang" value="<?php echo $lang; ?>" />
<input type="hidden" name="server" value="<?php echo $server; ?>" />
<input type="hidden" name="db" value="<?php echo $db; ?>" />
@@ -333,13 +333,13 @@ else if (PMA_MYSQL_INT_VERSION >= 32300) {
</tr>
<tr>
<td>
<a href="" onclick="setCheckboxes('tablesForm', true); return false;">
<?php echo $GLOBALS['strCheckAll']; ?></a>
<a href="#" onclick="setCheckboxes('tablesForm', true); return false;">
<?php echo $GLOBALS['strCheckAll']; ?></a>
</td>
<td>&nbsp;</td>
<td>
<a href="" onclick="setCheckboxes('tablesForm', false); return false;">
<?php echo $GLOBALS['strUncheckAll']; ?></a>
<a href="#" onclick="setCheckboxes('tablesForm', false); return false;">
<?php echo $GLOBALS['strUncheckAll']; ?></a>
</td>
</tr>
</table>
@@ -421,13 +421,13 @@ else {
</tr>
<tr>
<td>
<a href="" onclick="setCheckboxes('tablesForm', true); return false;">
<?php echo $GLOBALS['strCheckAll']; ?></a>
<a href="#" onclick="setCheckboxes('tablesForm', true); return false;">
<?php echo $GLOBALS['strCheckAll']; ?></a>
</td>
<td>&nbsp;</td>
<td>
<a href="" onclick="setCheckboxes('tablesForm', false); return false;">
<?php echo $GLOBALS['strUncheckAll']; ?></a>
<a href="#" onclick="setCheckboxes('tablesForm', false); return false;">
<?php echo $GLOBALS['strUncheckAll']; ?></a>
</td>
</tr>
</table>