bug [display] After clicking on Show Function or Function, the UPDATE query is not shown after execution

This commit is contained in:
Marc Delisle
2009-09-03 12:29:24 +00:00
parent b8447fec8a
commit ced55c3d05
2 changed files with 4 additions and 2 deletions

View File

@@ -48,6 +48,8 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- bug #2837722 [export] Run complex SQL then export does not work
- bug #2839548 [export] Triggers order on export
- bug #2826986 [display] Order by BLOB and range display
- bug [display] After clicking on Show Function or Function, the UPDATE query
is not shown after execution
3.2.1.0 (2009-08-09)
- bug #2799009 Login with ipv6 IP address breaks redirect

View File

@@ -266,7 +266,7 @@ if (! empty($sql_query)) {
if (! $cfg['ShowFunctionFields']) {
$this_url_params = array_merge($url_params,
array('ShowFunctionFields' => 1));
array('ShowFunctionFields' => 1, 'goto' => 'sql.php'));
echo $strShow . ' : <a href="tbl_change.php' . PMA_generate_common_url($this_url_params) . '">' . $strFunction . '</a>' . "\n";
}
@@ -293,7 +293,7 @@ foreach ($rows as $row_id => $vrow) {
<?php
if ($cfg['ShowFunctionFields']) {
$this_url_params = array_merge($url_params,
array('ShowFunctionFields' => 0));
array('ShowFunctionFields' => 0, 'goto' => 'sql.php'));
echo ' <th><a href="tbl_change.php' . PMA_generate_common_url($this_url_params) . '" title="' . $strHide . '">' . $strFunction . '</a></th>' . "\n";
}
?>