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$ $Id$
$Source$ $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> 2002-01-02 Marc Delisle <lem9@users.sourceforge.net>
* db_details.php3, libraries/functions.js: feature 474742: add * db_details.php3, libraries/functions.js: feature 474742: add check
check all/uncheck all in the table list all/uncheck all in the table list.
2002-01-01 Marc Delisle <lem9@users.sourceforge.net> 2002-01-01 Marc Delisle <lem9@users.sourceforge.net>
* tbl_replace.php3, bug 497919: $funcs was being reset() * tbl_replace.php3, bug 497919: $funcs was being reset() but was not
but was not defined (for example, only 1 field of type 'set') defined (for example, only 1 field of type 'set').
2001-12-29 Marc Delisle <lem9@users.sourceforge.net> 2001-12-29 Marc Delisle <lem9@users.sourceforge.net>
* tbl_change.php3, tbl_replace.php3, Documentation.html: * tbl_change.php3, tbl_replace.php3, Documentation.html:
feature 442855: checkboxes for null values, feature 442855: checkboxes for null values, modifications by Marc and
modifications by Marc and Lo<4C>c Lo<4C>c.
2001-12-29 Lo<4C>c Chapeaux <lolo@phpheaven.net> 2001-12-29 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* header.inc.php3, lines 60-62; libraries/defines.lib.php3, lines 102-103; * 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 // 2. Shows table informations on mysql >= 3.23 - staybyte - 11 June 2001
else if (PMA_MYSQL_INT_VERSION >= 32300) { 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="lang" value="<?php echo $lang; ?>" />
<input type="hidden" name="server" value="<?php echo $server; ?>" /> <input type="hidden" name="server" value="<?php echo $server; ?>" />
<input type="hidden" name="db" value="<?php echo $db; ?>" /> <input type="hidden" name="db" value="<?php echo $db; ?>" />
@@ -333,13 +333,13 @@ else if (PMA_MYSQL_INT_VERSION >= 32300) {
</tr> </tr>
<tr> <tr>
<td> <td>
<a href="" onclick="setCheckboxes('tablesForm', true); return false;"> <a href="#" onclick="setCheckboxes('tablesForm', true); return false;">
<?php echo $GLOBALS['strCheckAll']; ?></a> <?php echo $GLOBALS['strCheckAll']; ?></a>
</td> </td>
<td>&nbsp;</td> <td>&nbsp;</td>
<td> <td>
<a href="" onclick="setCheckboxes('tablesForm', false); return false;"> <a href="#" onclick="setCheckboxes('tablesForm', false); return false;">
<?php echo $GLOBALS['strUncheckAll']; ?></a> <?php echo $GLOBALS['strUncheckAll']; ?></a>
</td> </td>
</tr> </tr>
</table> </table>
@@ -421,13 +421,13 @@ else {
</tr> </tr>
<tr> <tr>
<td> <td>
<a href="" onclick="setCheckboxes('tablesForm', true); return false;"> <a href="#" onclick="setCheckboxes('tablesForm', true); return false;">
<?php echo $GLOBALS['strCheckAll']; ?></a> <?php echo $GLOBALS['strCheckAll']; ?></a>
</td> </td>
<td>&nbsp;</td> <td>&nbsp;</td>
<td> <td>
<a href="" onclick="setCheckboxes('tablesForm', false); return false;"> <a href="#" onclick="setCheckboxes('tablesForm', false); return false;">
<?php echo $GLOBALS['strUncheckAll']; ?></a> <?php echo $GLOBALS['strUncheckAll']; ?></a>
</td> </td>
</tr> </tr>
</table> </table>