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:
authorMichal Čihař <mcihar@suse.cz>2013-08-06 17:43:08 +0400
committerMichal Čihař <mcihar@suse.cz>2013-08-06 17:44:51 +0400
commitef30133a94f595f6d98d143d02995045d3cc1d25 (patch)
treed72cc30c7e74836d78a5726ac2ab6af00cb0ce89 /server_collations.php
parentdeca3cb971a6b0096dc13a5e5f2e00ef4e50dada (diff)
Various coding style fixes
Diffstat (limited to 'server_collations.php')
-rw-r--r--server_collations.php9
1 files changed, 4 insertions, 5 deletions
diff --git a/server_collations.php b/server_collations.php
index d547901740..b1b9c71a09 100644
--- a/server_collations.php
+++ b/server_collations.php
@@ -1,6 +1,7 @@
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
+ * Server collations page
*
* @package PhpMyAdmin
*/
@@ -27,14 +28,12 @@ $response = PMA_Response::getInstance();
$response->addHTML(PMA_getHtmlForSubPageHeader('collations'));
$response->addHTML(
PMA_getHtmlForCharsets(
- $mysql_charsets,
+ $mysql_charsets,
$mysql_collations,
- $mysql_charsets_descriptions,
- $mysql_default_collations,
+ $mysql_charsets_descriptions,
+ $mysql_default_collations,
$mysql_collations_available
)
);
-exit;
-
?>