summaryrefslogtreecommitdiff
path: root/submit.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2000-11-03 07:57:28 +0000
committerDries Buytaert <dries@buytaert.net>2000-11-03 07:57:28 +0000
commit7f2e4572fa1f1e6bcc14f0cc948f6fd988a7ff92 (patch)
tree4d8033ff512ecfe120e135b5bf012084af675ffe /submit.php
parentfb348c6a90f15c6f64d8e0e12056a55e778843c3 (diff)
downloadbrdo-7f2e4572fa1f1e6bcc14f0cc948f6fd988a7ff92.tar.gz
brdo-7f2e4572fa1f1e6bcc14f0cc948f6fd988a7ff92.tar.bz2
- fixed bug in search.php
- fixed bug in discussion.php - theme update: comment() now takes 3 arguments: $comment - an object with comment data $link - a link to the reply form of that particular comment $thread - the subthread of that particular comment - theme 'marvin' and theme 'zaphod' are updated, theme 'unconed' is left to be done
Diffstat (limited to 'submit.php')
-rw-r--r--submit.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/submit.php b/submit.php
index 18eeb2a42..121e9385f 100644
--- a/submit.php
+++ b/submit.php
@@ -120,7 +120,7 @@ function submit_preview($subject, $abstract, $article, $category) {
$output .= "</FORM>\n";
$theme->header();
- $theme->article(new Story($user->userid, check_output($subject), check_output($abstract), check_output($article), check_output($category), time()));
+ $theme->article(new Story($user->userid, $subject, $abstract, $article, $category, time()));
$theme->box("Submit a story", $output);
$theme->footer();
}
@@ -160,4 +160,4 @@ switch($op) {
break;
}
-?> \ No newline at end of file
+?>