1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00

Oops typo... And using the new $LANGUAGES array :)

This commit is contained in:
Gabor Hojtsy
2001-03-12 18:50:40 +00:00
parent 13fee9a0f7
commit 97658f9e75

View File

@@ -29,9 +29,9 @@ the provider's homepage:
echo '<tr bgcolor="#e0e0e0"><td>';
if ($mprevious != $mdata[0]) { echo $COUNTRIES[$mdata[0]]; }
else { echo "&nbsp;"; }
echo '</td><td>' . make_link($murl, $murl); .
echo '</td><td>' . make_link($murl, $murl) .
'</td><td>' . make_link($mdata[3], $mdata[1]) .
'</td><td>' . $mdata[6] . '</td></tr>';
'</td><td>' . $LANGUAGES[$mdata[6]] . '</td></tr>';
$mprevious = $mdata[0];
}
?>