Fixed variable usage.
This commit is contained in:
parent
4e7ea24ba5
commit
1674ca5a43
@ -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
|
||||
|
||||
@ -1023,10 +1023,10 @@ if (!defined('PMA_DISPLAY_TBL_LIB_INCLUDED')) {
|
||||
}
|
||||
|
||||
$transform_options['wrapper_link'] = '?'
|
||||
. $url_query
|
||||
. '&primary_key=' . $uva_condition
|
||||
. '&sql_query=' . urlencode($sql_query)
|
||||
. '&goto=' . urlencode($lnk_goto)
|
||||
. (isset($url_query) ? $url_query : '')
|
||||
. '&primary_key=' . (isset($uva_condition) ? $uva_condition : '')
|
||||
. '&sql_query=' . (isset($sql_query) ? urlencode($sql_query) : '')
|
||||
. '&goto=' . (isset($sql_goto) ? urlencode($lnk_goto) : '')
|
||||
. '&transform_key=' . urlencode($meta->name);
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user