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

(-)a/C4/HTML5Media.pm (-2 / +1 lines)
Lines 110-116 sub gethtml5media { Link Here
110
        }
110
        }
111
        # extension
111
        # extension
112
        $HTML5Media{extension} = ($HTML5Media{srcblock} =~ m/([^.]+)$/)[0];
112
        $HTML5Media{extension} = ($HTML5Media{srcblock} =~ m/([^.]+)$/)[0];
113
        if ( !grep /$HTML5Media{extension}/, @HTML5MediaExtensions ) {
113
        if ( !grep /\Q$HTML5Media{extension}\E/, @HTML5MediaExtensions ) {
114
            next; # not a specified media file
114
            next; # not a specified media file
115
        }
115
        }
116
        # mime
116
        # mime
117
- 

Return to bug 12885