Skip to content

Commit

Permalink
bug phpmyadmin#4217 Current value not highlighted when browsing forei…
Browse files Browse the repository at this point in the history
…gn values

Signed-off-by: Marc Delisle <[email protected]>
  • Loading branch information
Marc Delisle committed Jan 6, 2014
1 parent 1238d53 commit cbaa45d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ phpMyAdmin - ChangeLog
- bug #3885 Additional fix for this bug
- bug #4212 Table "disappears" if it has the same name as its tablegroup
- bug #4213 Datetime Quick Edit decrements by one day
- bug #4217 Current value not highlighted when browsing foreign values

4.1.3.0 (2013-12-31)
- bug #3938 PDFDefaultPageSize doc and easy configurability
Expand Down
1 change: 1 addition & 0 deletions browse_foreigners.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* Sets globals from $_REQUEST
*/
$request_params = array(
'data',
'field'
);

Expand Down
3 changes: 2 additions & 1 deletion libraries/insert_edit.lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,8 @@ function PMA_getForeignLink($column, $backup_field, $column_name_appendix,
'db' => $db,
'table' => $table,
'field' => $column['Field'],
'rownumber' => $rownumber
'rownumber' => $rownumber,
'data' => $data
)
) . '">'
. str_replace("'", "\'", $titles['Browse']) . '</a>';
Expand Down

0 comments on commit cbaa45d

Please sign in to comment.