Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xChangeLog10
-rw-r--r--browse_foreigners.php2
2 files changed, 7 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 2585e19a13..227fa84a94 100755
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,13 +7,15 @@ $Source$
2005-07-22 Marc Delisle <lem9@users.sourceforge.net>
* db_details_structure.php: table creation should not be possible
- in information_schema
- * db_operations.php: those operations do not make sense on
- information_schema
+ in information_schema
+ * db_operations.php: those operations do not make sense on
+ information_schema
+ * browse_foreigners.php: bug #1242805, Show All does not work while
+ browsing foreign values
2005-07-21 Marc Delisle <lem9@users.sourceforge.net>
* libraries/auth/cookie.auth.lib.php: bug #1240880, XSS on the
- cookie-based login panel
+ cookie-based login panel
2005-07-20 Marc Delisle <lem9@users.sourceforge.net>
* ChangeLog: automatic utf-8 encoding modeline, thanks to Michal
diff --git a/browse_foreigners.php b/browse_foreigners.php
index 1b05088184..56e6f3b018 100644
--- a/browse_foreigners.php
+++ b/browse_foreigners.php
@@ -87,7 +87,7 @@ require('./libraries/get_foreign.lib.php');
<form action="browse_foreigners.php" method="post">
<?php echo PMA_generate_common_hidden_inputs($db, $table); ?>
<input type="hidden" name="field" value="<?php echo urlencode($field); ?>" />
-<input type="hidden" name="field" value="<?php echo isset($fieldkey) ? $fieldkey : ''; ?>" />
+<input type="hidden" name="fieldkey" value="<?php echo isset($fieldkey) ? $fieldkey : ''; ?>" />
<?php
if (isset($pk)) {
$pk_uri = '&amp;pk=' . urlencode($pk);