<%INIT>
my $ARGSRef = $ARGS{'ARGSRef'};
if ( $$ARGSRef{'QuickCreate'} ) {
    if ( (!$$ARGSRef{'Subject'}) || ($$ARGSRef{'Subject'} =~ /^[ \t]*$/) ) {
        $$skip_create = 1;
        push @{$results}, loc('Error: empty subject');
        RT::Interface::Web::Session::Set(
            Key   => 'QuickCreate',
            Value => $ARGSRef,
        );
    }
}
</%INIT>
<%ARGS>
$skip_create => undef
$results => undef
</%ARGS>
