View | Details | Raw Unified | Return to bug 36190
Collapse All | Expand All

(-)a/xt/find-missing-op-in-forms.t (-2 / +1 lines)
Lines 65-71 sub catch_missing_op { Link Here
65
        if ( $in_form && $line =~ m{</form} ) {
65
        if ( $in_form && $line =~ m{</form} ) {
66
            $closed_form = 0;
66
            $closed_form = 0;
67
            if ($has_op) {
67
            if ($has_op) {
68
                unless ( $op_value =~ m{^cud-} ) {
68
                if ( $op_value !~ m{^cud-} && $op_value !~ m{^\[%} ) {
69
                    push @errors, $line_open_form;
69
                    push @errors, $line_open_form;
70
                }
70
                }
71
            } else {
71
            } else {
72
- 

Return to bug 36190