From a60d02a769a7c2a7a35e555b33f47acc38071b88 Mon Sep 17 00:00:00 2001
From: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Date: Wed, 15 Jul 2015 12:49:03 +0100
Subject: [PATCH] [PASSED QA] Bug 12885: Fix if url contains +*... and HTML5
 Media is enabled
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

The special regex chars are not escaped in C4::HTML5Media.

Test plan:
1/ Set 856$u=http://www.mrqe.com/lookup?talented+mr.+ripley
2/ Enable the pref HTML5Media
3/ Go on the detail page
It should not explode.

Signed-off-by: Mirko Tietgen <mirko@abunchofthings.net>
Signed-off-by: Joonas Kylmälä <j.kylmala@gmail.com>

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
---
 C4/HTML5Media.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/C4/HTML5Media.pm b/C4/HTML5Media.pm
index d587e5f..c8c8a77 100644
--- a/C4/HTML5Media.pm
+++ b/C4/HTML5Media.pm
@@ -110,7 +110,7 @@ sub gethtml5media {
         }
         # extension
         $HTML5Media{extension} = ($HTML5Media{srcblock} =~ m/([^.]+)$/)[0];
-        if ( !grep /$HTML5Media{extension}/, @HTML5MediaExtensions ) {
+        if ( !grep /\Q$HTML5Media{extension}\E/, @HTML5MediaExtensions ) {
             next; # not a specified media file
         }
         # mime
-- 
1.9.1