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

Link extended chm docs to docs-echm.php

This commit is contained in:
Philip Olson
2005-01-26 19:54:48 +00:00
parent ba53684e5a
commit debff9fa46

View File

@@ -128,7 +128,11 @@ if (count($found_formats) == 0) {
// Print out the name of the formats
foreach ($formats as $formatname => $extension) {
if (!in_array($extension, array_values($found_formats))) { continue; }
echo " <th valign=\"bottom\">$formatname</th>\n";
if ($formatname === 'Extended HTML Help') {
echo " <th valign=\"bottom\"><a href=\"/docs-echm.php\">$formatname</a></th>\n";
} else {
echo " <th valign=\"bottom\">$formatname</th>\n";
}
}
echo " </tr>\n";