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>2015-12-03 19:00:01 +0300
committerMarc Delisle <marc@infomarc.info>2015-12-03 19:00:01 +0300
commit260702328169a0f30d3767fed418b0a75734e8e0 (patch)
treedd0258065a70d2439b72aca2f24efd1e4fd63a0a /db_datadict.php
parentbc5c8e4d2b8caf315a9241dfaf363b5610c7abef (diff)
Remove some unnecessary string concatenations
https://github.com/dseguy/clearPHP/blob/master/rules/no-unnecessary-string-concatenation.md Signed-off-by: Marc Delisle <marc@infomarc.info>
Diffstat (limited to 'db_datadict.php')
-rw-r--r--db_datadict.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/db_datadict.php b/db_datadict.php
index 1057d161fd..8d22b1d464 100644
--- a/db_datadict.php
+++ b/db_datadict.php
@@ -115,11 +115,11 @@ foreach ($tables as $table) {
echo '<th width="40">' . __('Null') . '</th>';
echo '<th width="70">' . __('Default') . '</th>';
if ($have_rel) {
- echo ' <th>' . __('Links to') . '</th>' . "\n";
+ echo ' <th>' , __('Links to') , '</th>' , "\n";
}
- echo ' <th>' . __('Comments') . '</th>' . "\n";
+ echo ' <th>' , __('Comments') , '</th>' , "\n";
if ($cfgRelation['mimework']) {
- echo ' <th>MIME</th>' . "\n";
+ echo ' <th>MIME</th>' , "\n";
}
echo '</tr>';
$odd_row = true;
@@ -152,7 +152,7 @@ foreach ($tables as $table) {
echo htmlspecialchars($column_name);
if (isset($pk_array[$row['Field']])) {
- echo ' <em>(' . __('Primary') . ')</em>';
+ echo ' <em>(' , __('Primary') , ')</em>';
}
echo '</td>';
echo '<td'