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:
authorChanaka Indrajith <pe.chanaka.ck@gmail.com>2012-05-08 20:49:40 +0400
committerChanaka Indrajith <pe.chanaka.ck@gmail.com>2012-05-08 20:49:40 +0400
commit004f4f5258a0820975e2da9fa02a6d3ba6622368 (patch)
treec4073e2cdc0f7782427845edb54e08d2332b3394 /db_search.php
parentc31bfc25d3b602ee3eb447de5d1eeba5ff46a5b0 (diff)
Render HTML content in PMA_displayTableHeaders() function at once, in display_tbl.lib.php file
Diffstat (limited to 'db_search.php')
-rw-r--r--db_search.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/db_search.php b/db_search.php
index 0f5c090777..28d4968383 100644
--- a/db_search.php
+++ b/db_search.php
@@ -306,7 +306,7 @@ $choices = array(
// 4th parameter set to true to add line breaks
// 5th parameter set to false to avoid htmlspecialchars() escaping in the label
// since we have some HTML in some labels
-PMA_display_html_radio('search_option', $choices, $search_option, true, false);
+echo PMA_display_html_radio('search_option', $choices, $search_option, true, false);
unset($choices);
?>
</td>