Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugues Peccatte <hugues.peccatte@gmail.com>2015-11-08 17:58:48 +0300
committerHugues Peccatte <hugues.peccatte@gmail.com>2015-11-08 17:58:48 +0300
commitf9d582bd094270fa879be440a40419df75090823 (patch)
treed64946f21969677f173ce3368c90a3975540e4ad /db_operations.php
parentea806f645d98fa87ec4b8a1d644c3d5216abf211 (diff)
Make PHPCS happy.
Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
Diffstat (limited to 'db_operations.php')
-rw-r--r--db_operations.php9
1 files changed, 5 insertions, 4 deletions
diff --git a/db_operations.php b/db_operations.php
index 5176486af7..a78bda2aed 100644
--- a/db_operations.php
+++ b/db_operations.php
@@ -305,10 +305,11 @@ $response->addHTML('</div>');
if ($cfgRelation['pdfwork'] && $num_tables > 0) {
// We only show this if we find something in the new pdf_pages table
$test_query = '
- SELECT *
- FROM ' . PMA\libraries\Util::backquote($GLOBALS['cfgRelation']['db'])
- . '.' . PMA\libraries\Util::backquote($cfgRelation['pdf_pages']) . '
- WHERE db_name = \'' . PMA\libraries\Util::sqlAddSlashes($GLOBALS['db']) . '\'';
+ SELECT *
+ FROM ' . PMA\libraries\Util::backquote($GLOBALS['cfgRelation']['db'])
+ . '.' . PMA\libraries\Util::backquote($cfgRelation['pdf_pages']) . '
+ WHERE db_name = \'' . PMA\libraries\Util::sqlAddSlashes($GLOBALS['db'])
+ . '\'';
$test_rs = PMA_queryAsControlUser(
$test_query,
false,