fix weird placement of alter schema command
authorchriskl <chriskl>
Mon, 31 May 2004 05:56:14 +0000 (05:56 +0000)
committerchriskl <chriskl>
Mon, 31 May 2004 05:56:14 +0000 (05:56 +0000)
schema.php

index 44b8324460df661f0eb5673af62cdb1a661999ca..2f6274d5904cf6a573c5aa077f4f70d450d4b227 100755 (executable)
@@ -3,7 +3,7 @@
        /**
         * Display properties of a schema
         *
-        * $Id: schema.php,v 1.14 2004/03/12 08:56:51 chriskl Exp $
+        * $Id: schema.php,v 1.15 2004/05/31 05:56:14 chriskl Exp $
         */
 
        include_once('./libraries/lib.inc.php');
@@ -35,8 +35,6 @@
                echo "<li><a href=\"sequences.php?{$misc->href}\">{$lang['strsequences']}</a></li>\n";
                echo "<li><a href=\"functions.php?{$misc->href}\">{$lang['strfunctions']}</a></li>\n";
                echo "<li><a href=\"domains.php?{$misc->href}\">{$lang['strdomains']}</a></li>\n";
-               echo "<li><a href=\"schema.php?database=", urlencode($_REQUEST['database']), "&amp;schema=",
-                       urlencode($_REQUEST['schema']),"&amp;action=alter\">{$lang['stralter']}</a></li>\n";
                if ($conf['show_advanced']) {
                        echo "<li>{$lang['stradvanced']}</li>\n";
                        echo "<ul>\n";
                        echo "</ul>\n";
                }
                echo "</ul>\n";
+
+               echo "<ul>\n";
+               echo "<li><a href=\"schema.php?database=", urlencode($_REQUEST['database']), "&amp;schema=",
+                       urlencode($_REQUEST['schema']),"&amp;action=alter\">{$lang['stralter']}</a></li>\n";
+               echo "</ul>\n";
        }
 
        /**