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

- fixed small quote problem when editing a diary entry
parent 8511d9fb
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
...@@ -107,7 +107,7 @@ function diary_page_edit($id) { ...@@ -107,7 +107,7 @@ function diary_page_edit($id) {
$output .= "<P>\n"; $output .= "<P>\n";
$output .= " <B>Edit diary entry:</B><BR>\n"; $output .= " <B>Edit diary entry:</B><BR>\n";
$output .= " <TEXTAREA WRAP=\"virtual\" COLS=\"50\" ROWS=\"15\" NAME=\"text\">". check_input($diary->text) ."</TEXTAREA><BR>\n"; $output .= " <TEXTAREA WRAP=\"virtual\" COLS=\"50\" ROWS=\"15\" NAME=\"text\">". check_output($diary->text) ."</TEXTAREA><BR>\n";
$output .= " <SMALL><I>Allowed HTML tags: ". htmlspecialchars($allowed_html) .".</I></SMALL>\n"; $output .= " <SMALL><I>Allowed HTML tags: ". htmlspecialchars($allowed_html) .".</I></SMALL>\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