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:
authorMadhura Jayaratne <madhura.cj@gmail.com>2011-12-07 21:58:50 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2011-12-07 21:58:50 +0400
commit35b18e57a26331c3f4a124ca21b37f82b006faa6 (patch)
tree610896af060c4f754ed6344d1e45bb70c43c74ef /db_search.php
parenta7c00f719f1ba7725db25aa66741536dceb2ead2 (diff)
Coding style improvements - Multiline assignments
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 041242f222..68cb46302a 100644
--- a/db_search.php
+++ b/db_search.php
@@ -314,8 +314,8 @@ foreach ($tables_names_only as $each_table) {
} // end while
echo ' </select>' . "\n";
-$alter_select =
- '<a href="db_search.php' . PMA_generate_common_url(array_merge($url_params, array('selectall' => 1))) . '#db_search"'
+$alter_select
+ = '<a href="db_search.php' . PMA_generate_common_url(array_merge($url_params, array('selectall' => 1))) . '#db_search"'
. ' onclick="setSelectOptions(\'db_search\', \'table_select[]\', true); return false;">' . __('Select All') . '</a>'
. '&nbsp;/&nbsp;'
. '<a href="db_search.php' . PMA_generate_common_url(array_merge($url_params, array('unselectall' => 1))) . '#db_search"'