Skip to content

Commit

Permalink
Fix undefined variable
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Delisle <marc@infomarc.info>
  • Loading branch information
lem9 committed May 27, 2014
1 parent bea184b commit 5f12a95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/import.lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -1332,8 +1332,8 @@ function PMA_stopImport( PMA_Message $error_message )
if ($file_to_unlink != '') {
unlink($file_to_unlink);
}

$_SESSION['Import_message']['message'] = $error_message->getDisplay();
$msg = $error_message->getDisplay();
$_SESSION['Import_message']['message'] = $msg;

$response = PMA_Response::getInstance();
$response->isSuccess(false);
Expand Down

0 comments on commit 5f12a95

Please sign in to comment.