From 9735acdda4bf0055bfc534bc0ed603ef9880a0d9 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Fri, 14 May 2010 13:38:48 -0400 Subject: [PATCH] missing escape for quote --- import.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/import.php b/import.php index 0fb559bb7..9498752c6 100644 --- a/import.php +++ b/import.php @@ -423,7 +423,7 @@ if (!empty($id_bookmark) && $action_bookmark == 2) { if ($timeout_passed) { $message = PMA_Message::error(__('Script timeout passed, if you want to finish import, please resubmit same file and import will resume.')); if ($offset == 0 || (isset($original_skip) && $original_skip == $offset)) { - $message->addString(__('However on last run no data has been parsed, this usually means phpMyAdmin won't be able to finish this import unless you increase php time limits.')); + $message->addString(__('However on last run no data has been parsed, this usually means phpMyAdmin won\'t be able to finish this import unless you increase php time limits.')); } }