1
0
mirror of https://github.com/php/web-php.git synced 2026-03-24 07:12:16 +01:00

Archived langs update

This commit is contained in:
Sobak
2014-04-06 13:44:07 +02:00
parent 2fbf58567e
commit 29d8d7bf7b

View File

@@ -26,14 +26,14 @@ The following list of languages already contain SVN modules, and will show up on
<ul>
<?php
// $archived are manuals we have old versions of
$archived = array('da', 'kr');
$archived = array('da', 'kr', 'pl', 'tw');
foreach ($INACTIVE_ONLINE_LANGUAGES as $cc => $lang) {
$link = 'no archive';
if (in_array($cc, $archived)) {
$link = '<a href="http://docs.php.net/manual/'. $cc .'">archive</a>';
}
echo '<li>', $lang, ' : (', $link, ')</li>';
echo '<li>', $lang, ': (', $link, ')</li>';
}
?>
</ul>