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

* Fixed 2 small bugs in submit.php reported by Pepijn (kangaroot.net).
parent e214bd06
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
<?PHP <?
function submit_enter() { function submit_enter() {
global $user, $theme, $categories; global $anonymous, $categories, $theme, $user;
### Guidlines: ### Guidlines:
$output .= "<P>Got some news or some thoughts you would like to share? Fill out this form and they will automatically get whisked away to our submission queue where our moderators will frown at it, poke at it and hopefully post it. Every registered user is automatically a moderator and can vote whether or not your sumbission should be carried to the front page for discussion.</P>\n"; $output .= "<P>Got some news or some thoughts you would like to share? Fill out this form and they will automatically get whisked away to our submission queue where our moderators will frown at it, poke at it and hopefully post it. Every registered user is automatically a moderator and can vote whether or not your sumbission should be carried to the front page for discussion.</P>\n";
...@@ -56,14 +56,14 @@ function submit_enter() { ...@@ -56,14 +56,14 @@ function submit_enter() {
} }
function submit_preview($subject, $abstract, $story, $category) { function submit_preview($subject, $abstract, $story, $category) {
global $user, $theme, $categories; global $anonymous, $categories, $theme, $user;
$output .= "<FORM ACTION=\"submit.php\" METHOD=\"post\">\n"; $output .= "<FORM ACTION=\"submit.php\" METHOD=\"post\">\n";
$output .= "<P>\n"; $output .= "<P>\n";
$output .= " <B>Your name:</B><BR>\n"; $output .= " <B>Your name:</B><BR>\n";
if ($user) $output .= " <A HREF=\"account.php\">$user->userid</A> &nbsp; &nbsp; <SMALL> [ <A HREF=\"account.php?op=logout\">logout</A> ]</SMALL>\n"; if ($user) $output .= " <A HREF=\"account.php\">$user->userid</A> &nbsp; &nbsp; <SMALL> [ <A HREF=\"account.php?op=logout\">logout</A> ]</SMALL>\n";
else $output .= " $anonymous &nbsp; &nbsp; <SMALL>[ <A HREF=\"$account.php\">login</A> | <A HREF=\"account.php\">create an account</A> ]</SMALL>\n"; else $output .= " $anonymous &nbsp; &nbsp; <SMALL>[ <A HREF=\"account.php\">login</A> | <A HREF=\"account.php\">create an account</A> ]</SMALL>\n";
$output .= "</P>\n"; $output .= "</P>\n";
$output .= "<P>\n"; $output .= "<P>\n";
......
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