- a first file which uses blobs - as a test/debug case

3-00
Dries Buytaert 2000-12-10 18:10:26 +00:00
parent e8ea2ab88e
commit c514e3cd7e
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ function submit_enter() {
global $anonymous, $categories, $allowed_html, $theme, $user;
### Guidlines:
$output .= block_get("submit_information");
$output .= blob_get("submit_information");
### Submission form:
$output .= "<FORM ACTION=\"submit.php\" METHOD=\"post\">\n";
@ -135,7 +135,7 @@ function submit_submit($subject, $abstract, $article, $category) {
### Display confirmation message:
$theme->header();
$theme->box("Thank you for your submission.", block_get("sumbit_confirmation"));
$theme->box("Thank you for your submission.", blob_get("sumbit_confirmation"));
$theme->footer();
}