mirror of
https://github.com/vrana/adminer.git
synced 2026-02-26 08:31:32 +01:00
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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user