bug 992211 Database 5
This commit is contained in:
@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2004-09-07 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
|
* main.php: bug #992211, wrong parameters to
|
||||||
|
PMA_generate_common_hidden_inputs(), thanks to Ryan Schmidt
|
||||||
|
|
||||||
2004-09-07 Michal Čihař <michal@cihar.com>
|
2004-09-07 Michal Čihař <michal@cihar.com>
|
||||||
* calendar.php: Minimal common.lib.php doesn't fix absolute path, so use
|
* calendar.php: Minimal common.lib.php doesn't fix absolute path, so use
|
||||||
full one (bug #1023444).
|
full one (bug #1023444).
|
||||||
|
4
main.php
4
main.php
@@ -300,7 +300,7 @@ if ($server > 0) {
|
|||||||
?>
|
?>
|
||||||
<form method="post" action="db_create.php"><b>
|
<form method="post" action="db_create.php"><b>
|
||||||
<?php echo $strCreateNewDatabase . ' ' . PMA_showMySQLDocu('Reference', 'CREATE_DATABASE'); ?></b><br />
|
<?php echo $strCreateNewDatabase . ' ' . PMA_showMySQLDocu('Reference', 'CREATE_DATABASE'); ?></b><br />
|
||||||
<?php echo PMA_generate_common_hidden_inputs(5); ?>
|
<?php echo PMA_generate_common_hidden_inputs('', '', 5); ?>
|
||||||
<input type="hidden" name="reload" value="1" />
|
<input type="hidden" name="reload" value="1" />
|
||||||
<input type="text" name="db" value="<?php echo $db_to_create; ?>" maxlength="64" class="textfield" />
|
<input type="text" name="db" value="<?php echo $db_to_create; ?>" maxlength="64" class="textfield" />
|
||||||
<?php
|
<?php
|
||||||
@@ -618,7 +618,7 @@ if (isset($available_themes_choices) && $available_themes_choices > 1) {
|
|||||||
<td>
|
<td>
|
||||||
<form name="setTheme" method="post" action="index.php" target="_parent">
|
<form name="setTheme" method="post" action="index.php" target="_parent">
|
||||||
<?php
|
<?php
|
||||||
echo PMA_generate_common_hidden_inputs(5);
|
echo PMA_generate_common_hidden_inputs('', '', 5);
|
||||||
echo $theme_preview_href
|
echo $theme_preview_href
|
||||||
. (isset($strTheme) ? $strTheme : 'Theme (Style)')
|
. (isset($strTheme) ? $strTheme : 'Theme (Style)')
|
||||||
. '</a>:' . "\n";
|
. '</a>:' . "\n";
|
||||||
|
Reference in New Issue
Block a user