diff options
-rwxr-xr-x | quips.cgi | 1 | ||||
-rw-r--r-- | template/en/default/global/user-error.html.tmpl | 5 |
2 files changed, 0 insertions, 6 deletions
@@ -79,7 +79,6 @@ if ($action eq "add") { (Param('quip_list_entry_control') eq "open") || (UserInGroup('admin')) || 0; my $comment = $cgi->param("quip"); $comment || ThrowUserError("need_quip"); - $comment !~ m/</ || ThrowUserError("no_html_in_quips"); SendSQL("INSERT INTO quips (userid, quip, approved) VALUES " . '(' . $userid . ', ' . SqlQuote($comment) . ', ' . $approved . ')'); diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index f19ecbe33..2696ede15 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -858,11 +858,6 @@ and an error occurred opening yesterday's dupes file: [% error_msg FILTER html %]. - [% ELSIF error == "no_html_in_quips" %] - [% title = "No HTML In Quips" %] - Sorry - for security reasons, support for HTML tags has been turned off - in quips. - [% ELSIF error == "no_new_quips" %] [% title = "No New Quips" %] This site does not permit the addition of new quips. |