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:
authorMarc Delisle <marc@infomarc.info>2012-07-07 18:58:49 +0400
committerMarc Delisle <marc@infomarc.info>2012-07-07 18:58:49 +0400
commitdca620c86b2037ed03bf3ab2d3c355de0fbfcd87 (patch)
treec837ca0e950ce989d1427d17876dd5afce38d88c /db_search.php
parent60c657e9ec383966f85b2056b1a570d7322ffc9a (diff)
Improve comments
Diffstat (limited to 'db_search.php')
-rw-r--r--db_search.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/db_search.php b/db_search.php
index 1aa3ea4037..dcb18eb701 100644
--- a/db_search.php
+++ b/db_search.php
@@ -36,7 +36,7 @@ $url_params['goto'] = 'db_search.php';
// Create a database search instance
$db_search = new PMA_DbSearch($GLOBALS['db']);
-// Displays top links if we are not in an Ajax request
+// Display top links if we are not in an Ajax request
if ( $GLOBALS['is_ajax_request'] != true) {
include 'libraries/db_info.inc.php';
$response->addHTML('<div id="searchresults">');
@@ -54,6 +54,6 @@ if ($GLOBALS['is_ajax_request'] == true) {
$response->addHTML('</div>');//end searchresults div
}
-// Add search form to response
+// Display the search form
$response->addHTML($db_search->getSelectionForm($url_params));
?>