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>2014-03-15 14:46:16 +0400
committerHugues Peccatte <hugues.peccatte@gmail.com>2014-03-15 14:46:16 +0400
commitc38b78defbcc15bcac84fc4678d5d4f1adffdc28 (patch)
tree21298c50e4491ccd9509dae4392c698cc9b6208d /db_search.php
parent40f9df6fcc327b096a041818e481bd4a7a45f0ae (diff)
PHPCS updates.
Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
Diffstat (limited to 'db_search.php')
-rw-r--r--db_search.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/db_search.php b/db_search.php
index fe80d4ea8e..8d5d80f346 100644
--- a/db_search.php
+++ b/db_search.php
@@ -54,9 +54,10 @@ if ($GLOBALS['is_ajax_request'] == true && empty($_REQUEST['ajax_page_request'])
}
// Display the search form
-$response->addHTML('<div id="togglesearchresultsdiv">'
- . '<a id="togglesearchresultlink"></a></div>'
- . '<br class="clearfloat" />');
+$response->addHTML(
+ '<div id="togglesearchresultsdiv"><a id="togglesearchresultlink"></a></div>'
+ . '<br class="clearfloat" />'
+);
$response->addHTML($db_search->getSelectionForm($url_params));
$response->addHTML($db_search->_getResultDivs());
?>