Fixed variable usage.

This commit is contained in:
Garvin Hicking 2003-02-26 11:54:48 +00:00
parent 4e7ea24ba5
commit 1674ca5a43
2 changed files with 7 additions and 4 deletions

View File

@ -7,6 +7,9 @@ $Source$
2003-02-26 Garvin Hicking <me@supergarv.de>
* lang/german-*: better grammar. ;)
* libraries/display_tbl.lib.php3: Fixed transformation-link variable
usage for special queries like 'SHOW FIELDS', where certain variables are
not set.
2003-02-25 Marc Delisle <lem9@users.sourceforge.net>
* db_details_structure.php3: undefined variable $comment

View File

@ -1023,10 +1023,10 @@ if (!defined('PMA_DISPLAY_TBL_LIB_INCLUDED')) {
}
$transform_options['wrapper_link'] = '?'
. $url_query
. '&amp;primary_key=' . $uva_condition
. '&amp;sql_query=' . urlencode($sql_query)
. '&amp;goto=' . urlencode($lnk_goto)
. (isset($url_query) ? $url_query : '')
. '&amp;primary_key=' . (isset($uva_condition) ? $uva_condition : '')
. '&amp;sql_query=' . (isset($sql_query) ? urlencode($sql_query) : '')
. '&amp;goto=' . (isset($sql_goto) ? urlencode($lnk_goto) : '')
. '&amp;transform_key=' . urlencode($meta->name);