Update to new PMA_URL_getCommon parameters

Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
This commit is contained in:
Madhura Jayaratne 2014-11-12 17:33:37 +05:30
parent c4710c3e1d
commit f031099ad6

View File

@ -57,7 +57,8 @@ if (! isset($goto)) {
$goto = $GLOBALS['cfg']['DefaultTabTable'];
}
// Defines the url to return to in case of error in the next sql statement
$err_url = $goto . '?' . PMA_URL_getCommon($db, $table);
$params = array('db' => $db, 'table' => $table);
$err_url = $goto . '?' . PMA_URL_getCommon($params);
// Displays the find and replace form
$htmlOutput .= $table_search->getSelectionForm($goto);
$response->addHTML($htmlOutput);