diff options
Diffstat (limited to 'modules/drupal/drupal.module')
-rw-r--r-- | modules/drupal/drupal.module | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/drupal/drupal.module b/modules/drupal/drupal.module index 8e7cc249c..990080f05 100644 --- a/modules/drupal/drupal.module +++ b/modules/drupal/drupal.module @@ -11,8 +11,8 @@ function drupal_render($id, $cid) { $output = " <P>Drupal is the English pronunciation for the Dutch word 'druppel' which stands for 'drop'. Drupal is a full-featured content management/discussion engine suitable to setup a news-driven community or portal site. Drupal aims towards easy installation, excessive configuration and fine-grained maintenance capabilities. Due to its modular design drupal is flexible and easy to adapt or extend.</P>\n"; $output .= " <P>Drupal is primarily written by Dries Buytaert (dries_at_drop.org) and build after Slash (<A HREF=\"http://slashcode.com/\">http://slashcode.com/</A>) and Scoop (<A HREF=\"http://scoop.kuro5hin.org/\">http://scoop.kuro5hin.org/</A>). The source code is available under terms of GNU General Public License (GPL).</P>\n"; $output .= " <P>We don't have a real demo site yet but drupal is used by (and created for) <A HREF=\"http://drop.org/\">http://drop.org/</A>. Create an account, play with it for a bit, read the <A HREF=\"module.php?mod=documentation\">documentation</A> and spend some time getting used to it.</P>\n"; - $theme->box("Introduction", $output); - + $theme->box("Introduction", $output); + $output = "<LI><A HREF=\"drupal/drupal-1.00.tgz\">drupal 1.00</A> (2000/01/15 - latest version)</LI>\n"; $output .= "<LI><A HREF=\"drupal/drupal-1.00-rc2.tgz\">drupal 1.00-rc2</A> (2000/01/08)</LI>\n"; $output .= "<LI><A HREF=\"drupal/drupal-1.00-rc1.tgz\">drupal 1.00-rc1</A> (2000/01/01)</LI>\n"; @@ -23,7 +23,7 @@ function drupal_render($id, $cid) { while ($file = readdir($handle)) if (ereg(".jpg", $file) || ereg(".gif", $file)) $output .= " <LI><SMALL><A HREF=\"drupal/$file\">$file</A></SMALL></LI>\n"; closedir($handle); $theme->box("Screenshots", $output); - + $output = "<H2>Documentation</H2>\n"; $output .= " <LI><A HREF=\"module.php?mod=documentation\">documentation</A></LI>\n"; $output .= " <LI><A HREF=\"module.php?mod=wishlist\">wishlist</A></LI>\n"; @@ -42,7 +42,7 @@ function drupal_render($id, $cid) { function drupal_page() { global $cid, $comment, $id, $op, $pid, $lid, $link, $mode, $order, $subject, $theme, $threshold; - switch($op) { + switch($op) { case "Preview comment": $theme->header(); comment_preview($pid, $id, $subject, $comment); |