]> git.joonet.de Git - adminer.git/commitdiff
Missing space
authorjakubvrana <jakubvrana@7c3ca157-0c34-0410-bff1-cbf682f78f5c>
Tue, 16 Jun 2009 14:54:42 +0000 (14:54 +0000)
committerjakubvrana <jakubvrana@7c3ca157-0c34-0410-bff1-cbf682f78f5c>
Tue, 16 Jun 2009 14:54:42 +0000 (14:54 +0000)
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@711 7c3ca157-0c34-0410-bff1-cbf682f78f5c

adminer/edit.inc.php

index 43040bf9e40d88bbaa98f4aca832a13b6ec2d1c5..9cba7773f2efa510c480f49b26fbab9d8e013a96 100644 (file)
@@ -92,13 +92,13 @@ if (isset($_GET["select"])) {
        hidden_fields(array("check" => (array) $_POST["check"], "clone" => $_POST["clone"], "all" => $_POST["all"]));
 }
 if ($fields) {
-       echo '<input type="submit" value="' . lang('Save') . '" />';
+       echo "<input type='submit' value='" . lang('Save') . "' />\n";
        if (!isset($_GET["default"]) && !isset($_GET["select"])) {
-               echo '<input type="submit" name="insert" value="' . ($update ? lang('Save and continue edit') : lang('Save and insert next')) . '" />';
+               echo "<input type='submit' name='insert' value='" . ($update ? lang('Save and continue edit') : lang('Save and insert next')) . "' />\n";
        }
 }
 if ($update) {
-       echo ' <input type="submit" name="delete" value="' . lang('Delete') . '"' . $confirm . '/>';
+       echo "<input type='submit' name='delete' value='" . lang('Delete') . "'$confirm />\n";
 }
 ?>
 </p>