Blugh, missing ;

This commit is contained in:
Chris 2012-08-01 13:15:10 +01:00
parent c790b4f307
commit 1e4a70c808

View File

@ -289,7 +289,7 @@ sub validate_htmlarea {
# Get a copy of the input with no tags at all so that it can be checked for length
my $scrubber = HTML::Scrubber -> new();
my $nohtml = $scrubber -> scrub($text)
my $nohtml = $scrubber -> scrub($text);
# If the text area is empty, deal with the whole default/required malarky
if(!defined($nohtml) || !$nohtml) {