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:
authorGarvin Hicking <me@supergarv.de>2003-11-22 23:57:48 +0300
committerGarvin Hicking <me@supergarv.de>2003-11-22 23:57:48 +0300
commitc2b46ac9452b997ff61664e3f15a0f4e1367b1b2 (patch)
tree26f88dfa49345ad56261a93bf756941f99ddafe7 /server_collations.php
parent096094b74d73ae02aef352b8daafac0706b69078 (diff)
Final batch of PHP3-Compatibility fixes. Please test. :-)
Diffstat (limited to 'server_collations.php')
-rw-r--r--server_collations.php5
1 files changed, 1 insertions, 4 deletions
diff --git a/server_collations.php b/server_collations.php
index 1084c28dd6..4ac56a716a 100644
--- a/server_collations.php
+++ b/server_collations.php
@@ -60,7 +60,6 @@ reset($mysql_collations);
$i = 0;
$table_row_count = count($mysql_charsets) + $mysql_collations_count;
-//while (list(, $current_charset) = each($mysql_charsets)) {
foreach ($mysql_charsets as $current_charset) {
if ($i > $table_row_count / 2) {
$i = 0;
@@ -85,8 +84,6 @@ foreach ($mysql_charsets as $current_charset) {
. ' </td>' . "\n"
. ' </tr>' . "\n";
$useBgcolorOne = TRUE;
-// reset($mysql_collations[$current_charset]);
-// while (list(, $current_collation) = each($mysql_collations[$current_charset])) {
foreach ($mysql_collations[$current_charset] as $current_collation) {
$i++;
echo ' <tr>' . "\n"
@@ -108,4 +105,4 @@ echo ' </table>' . "\n"
require('./footer.inc.php');
-?>
+?> \ No newline at end of file