XHTML syntax errors (thanks to kozotoc)

git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@491 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
jakubvrana
2008-09-24 20:46:21 +00:00
parent a17410560f
commit 61afe373c7
10 changed files with 20 additions and 22 deletions

View File

@@ -134,7 +134,7 @@ page_header(lang('Export'), "", (strlen($_GET["export"]) ? array("table" => $_GE
<script type="text/javascript">
function check(td, name, value) {
var inputs = td.parentNode.parentNode.parentNode.getElementsByTagName('input');
for (var i=0; i < inputs.length; i++) {
for (var i=0; inputs.length > i; i++) {
if (name.test(inputs[i].name)) {
inputs[i].checked = (inputs[i].value == value);
}
@@ -191,5 +191,5 @@ while ($row = $result->fetch_assoc()) {
}
echo "$views</table>\n";
?>
<input type="submit" value="<?php echo lang('Export'); ?>" />
<p><input type="submit" value="<?php echo lang('Export'); ?>" /></p>
</form>