]> git.joonet.de Git - adminer.git/commitdiff
Whitespace
authorjakubvrana <jakubvrana@7c3ca157-0c34-0410-bff1-cbf682f78f5c>
Wed, 11 Jul 2007 21:06:19 +0000 (21:06 +0000)
committerjakubvrana <jakubvrana@7c3ca157-0c34-0410-bff1-cbf682f78f5c>
Wed, 11 Jul 2007 21:06:19 +0000 (21:06 +0000)
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@142 7c3ca157-0c34-0410-bff1-cbf682f78f5c

call.inc.php
database.inc.php
indexes.inc.php

index 9ff82a5f4b8dfc2eb3db3699e5dd0777386f1ac9..85c12bff18bc39963386cc4565fad94c7b585719 100644 (file)
@@ -79,5 +79,8 @@ if ($in) {
        echo "</table>\n";
 }
 ?>
-<p><input type="hidden" name="token" value="<?php echo $token; ?>" /><input type="submit" value="<?php echo lang('Call'); ?>" /></p>
+<p>
+<input type="hidden" name="token" value="<?php echo $token; ?>" />
+<input type="submit" value="<?php echo lang('Call'); ?>" />
+</p>
 </form>
index cd0549c7ca4825b472d50e5939e69585c804e419..19790b620d7cbdb37c626d848d873f11c7330004 100644 (file)
@@ -45,10 +45,12 @@ if ($_POST) {
 }
 ?>
 
-<form action="" method="post"><p>
+<form action="" method="post">
+<p>
 <input name="name" value="<?php echo htmlspecialchars($name); ?>" maxlength="64" />
 <select name="collation"><option value="">(<?php echo lang('collation'); ?>)</option><?php echo optionlist(collations(), $collate, "not_vals"); ?></select>
 <input type="hidden" name="token" value="<?php echo $token; ?>" />
 <input type="submit" value="<?php echo lang('Save'); ?>" />
 <?php if (strlen($_GET["db"])) { ?><input type="submit" name="drop" value="<?php echo lang('Drop'); ?>" /><?php } ?>
-</p></form>
+</p>
+</form>
index d0d36c568d67ec3558d68df06d9da75aef787fa0..12b9450e0e12ae0cf693fef06b967c30ae84f6c0 100644 (file)
@@ -67,7 +67,8 @@ foreach ($row["indexes"] as $index) {
 <tr><td><select name="indexes[<?php echo $j; ?>][type]"><option></option><?php echo optionlist($index_types, array(), "not_vals"); ?></select></td><td><select name="indexes[<?php echo $j; ?>][columns][1]"><option></option><?php echo optionlist($fields, array(), "not_vals"); ?></select></td></tr>
 </table>
 <p>
-<input type="hidden" name="token" value="<?php echo $token; ?>" /><input type="submit" value="<?php echo lang('Alter indexes'); ?>" />
+<input type="hidden" name="token" value="<?php echo $token; ?>" />
+<input type="submit" value="<?php echo lang('Alter indexes'); ?>" />
 <input type="submit" name="add" value="<?php echo lang('Add next'); ?>" />
 </p>
 </form>