Merge remote-tracking branch 'origin/master'

This commit is contained in:
Michal Čihař 2012-06-29 16:22:30 +02:00
commit 9176ddafd0
2 changed files with 2 additions and 1 deletions

View File

@ -134,6 +134,7 @@ if (strlen($db) && (! empty($db_rename) || ! empty($db_copy))) {
$tables_full = PMA_DBI_get_tables_full($db);
$views = array();
require_once "libraries/plugin_interface.lib.php";
// remove all foreign key constraints, otherwise we can get errors
$export_sql_plugin = PMA_getPlugin(
"export",

View File

@ -121,6 +121,6 @@ function PMA_import_nopluginCheck()
function PMA_importAjaxStatus($id)
{
header('Content-type: application/json');
echo json_encode(PMA_getUploadStatus($id));
echo json_encode($_SESSION[$SESSION_KEY]["handler"]::getUploadStatus($id));
}
?>