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:
authorRouslan Placella <rouslan@placella.com>2012-07-03 20:42:03 +0400
committerRouslan Placella <rouslan@placella.com>2012-10-31 00:10:21 +0400
commit2b868809f653043cfb5618193a8c11190b6e87e5 (patch)
tree2c40fb765fe7c64f82735198b326abfa65716209 /db_export.php
parentf41c1b397893c1982ec82b7c960608ee41716749 (diff)
Wrap long lines
Diffstat (limited to 'db_export.php')
-rw-r--r--db_export.php14
1 files changed, 10 insertions, 4 deletions
diff --git a/db_export.php b/db_export.php
index 00f518f22c..7208d52290 100644
--- a/db_export.php
+++ b/db_export.php
@@ -38,10 +38,16 @@ $checkall_url = 'db_export.php?'
. PMA_generate_common_url($db)
. '&amp;goto=db_export.php';
-$multi_values = '<div>';
-$multi_values .= '<a href="' . $checkall_url . '" onclick="setSelectOptions(\'dump\', \'table_select[]\', true); return false;">' . __('Select All') . '</a>
- /
- <a href="' . $checkall_url . '&amp;unselectall=1" onclick="setSelectOptions(\'dump\', \'table_select[]\', false); return false;">' . __('Unselect All') . '</a><br />';
+$multi_values = '<div>';
+$multi_values .= '<a href="' . $checkall_url . '"';
+$multi_values .= ' onclick="setSelectOptions(\'dump\', \'table_select[]\', true); return false;">';
+$multi_values .= __('Select All');
+$multi_values .= '</a>';
+$multi_values .= ' / ';
+$multi_values .= '<a href="' . $checkall_url . '&amp;unselectall=1"';
+$multi_values .= ' onclick="setSelectOptions(\'dump\', \'table_select[]\', false); return false;">';
+$multi_values .= __('Unselect All');
+$multi_values .= '</a><br />';
$multi_values .= '<select name="table_select[]" id="table_select" size="10" multiple="multiple">';
$multi_values .= "\n";