Skip to content
Snippets Groups Projects
Commit ca2d5d6f authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- small additions

parent fcc52fa4
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -18,8 +18,13 @@ function drupal_page() {
<H2>Documentation</H2>
<LI><A HREF=\"module.php?mod=documentation\">documentation</A></LI>
<LI><A HREF=\"module.php?mod=wishlist\">wishlist</A></LI>
<H2>Screenshots</H2>
";
$handle = opendir("drupal");
while ($file = readdir($handle)) if (ereg(".jpg", $file)) $output .= " <LI><SMALL><A HREF=\"drupal/$file\">$file</A></SMALL></LI>\n";
closedir($handle);
$theme->header();
$theme->box("Drupal", $output);
$theme->footer();
......
......@@ -18,8 +18,13 @@ function drupal_page() {
<H2>Documentation</H2>
<LI><A HREF=\"module.php?mod=documentation\">documentation</A></LI>
<LI><A HREF=\"module.php?mod=wishlist\">wishlist</A></LI>
<H2>Screenshots</H2>
";
$handle = opendir("drupal");
while ($file = readdir($handle)) if (ereg(".jpg", $file)) $output .= " <LI><SMALL><A HREF=\"drupal/$file\">$file</A></SMALL></LI>\n";
closedir($handle);
$theme->header();
$theme->box("Drupal", $output);
$theme->footer();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment