From 4204a93d7d66a76efb5849ae46630d8743b52440 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 5 May 2010 11:47:01 +0200 Subject: [PATCH] Fix escaping. --- pdf_schema.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdf_schema.php b/pdf_schema.php index 43aac1380..a55c85e98 100644 --- a/pdf_schema.php +++ b/pdf_schema.php @@ -634,7 +634,7 @@ class PMA_RT_Table { $sql = 'DESCRIBE ' . PMA_backquote($table_name); $result = PMA_DBI_try_query($sql, null, PMA_DBI_QUERY_STORE); if (!$result || !PMA_DBI_num_rows($result)) { - $pdf->PMA_PDF_die(sprintf(__('The %s table doesn't exist!'), $table_name)); + $pdf->PMA_PDF_die(sprintf(__('The %s table doesn\'t exist!'), $table_name)); } // load fields //check to see if it will load all fields or only the foreign keys