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-06 16:01:07 +0300
committerMarc Delisle <marc@infomarc.info>2015-12-06 16:01:07 +0300
commit66c15daba0a4a34e108cb01a852b9171ae0f51ab (patch)
treef9e674706324b80f9d580b75825b084a5b5b4c4f /db_datadict.php
parent3dcb36b4caa04bcf313ef95e7ccfce6acf06e3fe (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.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/db_datadict.php b/db_datadict.php
index 46373a7a6b..71f7654d1f 100644
--- a/db_datadict.php
+++ b/db_datadict.php
@@ -54,8 +54,8 @@ if ($cfgRelation['commwork']) {
* Displays DB comment
*/
if ($comment) {
- echo '<p>' . __('Database comment')
- . '<br /><i>' . htmlspecialchars($comment) . '</i></p>';
+ echo '<p>' , __('Database comment')
+ , '<br /><i>' , htmlspecialchars($comment) , '</i></p>';
} // end if
}
@@ -110,10 +110,10 @@ foreach ($tables as $table) {
*/
echo '<table width="100%" class="print">';
- echo '<tr><th width="50">' . __('Column') . '</th>';
- echo '<th width="80">' . __('Type') . '</th>';
- echo '<th width="40">' . __('Null') . '</th>';
- echo '<th width="70">' . __('Default') . '</th>';
+ echo '<tr><th width="50">' , __('Column') , '</th>';
+ echo '<th width="80">' , __('Type') , '</th>';
+ echo '<th width="40">' , __('Null') , '</th>';
+ echo '<th width="70">' , __('Default') , '</th>';
if ($have_rel) {
echo ' <th>' , __('Links to') , '</th>' , "\n";
}
@@ -156,10 +156,10 @@ foreach ($tables as $table) {
}
echo '</td>';
echo '<td'
- . PMA\libraries\Util::getClassForType(
+ , PMA\libraries\Util::getClassForType(
$extracted_columnspec['type']
)
- . ' lang="en" dir="ltr">' . $type . '</td>';
+ , ' lang="en" dir="ltr">' , $type , '</td>';
echo '<td>';
echo (($row['Null'] == 'NO') ? __('No') : __('Yes'));