summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-07-07 10:32:17 +0000
committerDries Buytaert <dries@buytaert.net>2001-07-07 10:32:17 +0000
commit7cbd6cf01e918ebea45f4ca39ed634ac3c168159 (patch)
treec8572f08feb59238ba18a1f86dfdcc49b9181e8b
parentcddb517df63867c04e2646bcdd5f11d24af719d5 (diff)
downloadbrdo-7cbd6cf01e918ebea45f4ca39ed634ac3c168159.tar.gz
brdo-7cbd6cf01e918ebea45f4ca39ed634ac3c168159.tar.bz2
- Tidied up submit.php (submission page) a bit.
-rw-r--r--submit.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/submit.php b/submit.php
index b1cfaa320..084217474 100644
--- a/submit.php
+++ b/submit.php
@@ -12,13 +12,12 @@ if (user_access("post content")) {
}
else {
foreach (module_list() as $name) {
- if (module_hook($name, "user")) $options .= "<OPTION VALUE=\"$name\">$name</OPTION>";
+ if (module_hook($name, "user")) $options .= "<option value=\"$name\">$name</option>";
}
- $form .= form_item(t("Type"), "<SELECT NAME=\"mod\">$options</SELECT>");
+ $form .= form_item(t("Submission type"), "<SELECT NAME=\"mod\">$options</SELECT>");
$form .= form_submit(t("Next step"));
- $output .= "<P>". t("If you have written something or if you have some news or thoughts that you would like to share, then this is the place where you can submit new content. Fill out this form and your contribution will automatically get whisked away to our submission queue where our moderators will frown at it, poke at it and hopefully post it.") ."</P>";
$output .= form("submit.php", $form, "get");
$theme->box("Submit", $output);