bug #3303869 [interface] Unnecessary scrolling on Databases page

This commit is contained in:
Marc Delisle
2011-05-18 07:39:42 -04:00
parent c88379f4d4
commit ac9d911c3f
2 changed files with 11 additions and 10 deletions

View File

@@ -3,6 +3,7 @@
3.4.2.0 (not yet released)
- bug #3301249 [interface] Iconic table operations does not remove inline edit label
- bug #3303869 [interface] Unnecessary scrolling on Databases page
3.4.1.0 (not yet released)
- bug #3301108 [interface] Synchronize and already configured host

View File

@@ -100,6 +100,16 @@ echo '<h2>' . "\n"
. ($dbstats ? __('Databases statistics') : __('Databases')) . "\n"
.'</h2>' . "\n";
/**
* Create new database.
*/
if ($cfg['ShowCreateDb']) {
echo '<ul><li id="li_create_database">' . "\n";
require './libraries/display_create_database.lib.php';
echo ' </li>' . "\n";
echo '</ul>' . "\n";
}
/**
* Gets the databases list
*/
@@ -268,16 +278,6 @@ if ($databases_count > 0) {
}
unset($databases_count);
/**
* Create new database.
*/
if ($cfg['ShowCreateDb']) {
echo '<ul><li id="li_create_database">' . "\n";
require './libraries/display_create_database.lib.php';
echo ' </li>' . "\n";
echo '</ul>' . "\n";
}
/**
* Sends the footer
*/