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:
Diffstat (limited to 'db_datadict.php')
-rw-r--r--db_datadict.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/db_datadict.php b/db_datadict.php
index 8c61a0404e..efa4d72c09 100644
--- a/db_datadict.php
+++ b/db_datadict.php
@@ -46,7 +46,7 @@ if ($cfgRelation['commwork']) {
if (is_array($comment)) {
?>
<p> <?php echo $strDBComment; ?>
- <i><?php echo htmlspecialchars( implode( ' ', $comment ) ); ?></i></p>
+ <i><?php echo htmlspecialchars(implode(' ', $comment)); ?></i></p>
<?php
} // end if
}
@@ -77,10 +77,10 @@ while ($row = PMA_DBI_fetch_assoc($rowset)) {
* Gets table informations
*/
// The 'show table' statement works correct since 3.23.03
- $showtable = PMA_DBI_get_tables_full( $db, $table );
+ $showtable = PMA_DBI_get_tables_full($db, $table);
$num_rows = (isset($showtable[$table]['TABLE_ROWS']) ? $showtable[$table]['TABLE_ROWS'] : 0);
$show_comment = (isset($showtable[$table]['TABLE_COMMENT']) ? $showtable[$table]['TABLE_COMMENT'] : '');
- unset( $showtable );
+ unset($showtable);
/**
@@ -103,7 +103,7 @@ while ($row = PMA_DBI_fetch_assoc($rowset)) {
$pk_array[$row['Column_name']] = 1;
}
// Retains keys informations
- if ($row['Key_name'] != $lastIndex ){
+ if ($row['Key_name'] != $lastIndex){
$indexes[] = $row['Key_name'];
$lastIndex = $row['Key_name'];
}
@@ -294,7 +294,7 @@ while ($row = PMA_DBI_fetch_assoc($rowset)) {
</tr>
<?php
} // end while
- PMA_DBI_free_result( $result );
+ PMA_DBI_free_result($result);
$count++;
?>
</table>