From dca620c86b2037ed03bf3ab2d3c355de0fbfcd87 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sat, 7 Jul 2012 10:58:49 -0400 Subject: [PATCH] Improve comments --- db_search.php | 4 ++-- 1 file 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('
'); @@ -54,6 +54,6 @@ if ($GLOBALS['is_ajax_request'] == true) { $response->addHTML('
');//end searchresults div } -// Add search form to response +// Display the search form $response->addHTML($db_search->getSelectionForm($url_params)); ?>