fixed URL generation where needed only & and not &

This commit is contained in:
Michal Čihař
2003-01-08 14:43:55 +00:00
parent 1bb107dc8c
commit c54073dafc
8 changed files with 17 additions and 17 deletions

View File

@@ -23,7 +23,7 @@ if (!isset($dontlimitchars)) {
$is_gotofile = FALSE;
if (isset($after_insert) && $after_insert == 'new_insert') {
$goto = 'tbl_change.php3?'
. PMA_generate_common_url($db, $table)
. PMA_generate_common_url($db, $table, '&')
. '&goto=' . urlencode($goto)
. '&pos=' . $pos
. '&session_max_rows=' . $session_max_rows
@@ -33,7 +33,7 @@ if (isset($after_insert) && $after_insert == 'new_insert') {
. (empty($sql_query) ? '' : '&sql_query=' . urlencode($sql_query));
} else if ($goto == 'sql.php3') {
$goto = 'sql.php3?'
. PMA_generate_common_url($db, $table)
. PMA_generate_common_url($db, $table, '&')
. '&pos=' . $pos
. '&session_max_rows=' . $session_max_rows
. '&disp_direction=' . $disp_direction