From 67df63367cef69a6faeada1d85813001dd4f9a4e Mon Sep 17 00:00:00 2001
From: strentini <none@none>
Date: Mon, 11 Jul 2011 16:42:10 +0200
Subject: [PATCH] OLAT-6368 : remove special invisible blank character in
 static/movie/player.js

FXOLAT-193

--HG--
branch : uzhFixes711
---
 olat3/webapp/static/movie/player.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/olat3/webapp/static/movie/player.js b/olat3/webapp/static/movie/player.js
index 7728007dc08..83ed105f652 100644
--- a/olat3/webapp/static/movie/player.js
+++ b/olat3/webapp/static/movie/player.js
@@ -21,7 +21,7 @@ var BPlayer = {
 	
 	insertFlashPlayer : function (address,domId,width,height,start,duration,provider,streamer,autostart,repeat,controlbar) {
 		var videoUrl = address
-		if(address.indexOf('://') < 0 && (address.indexOf('/secstatic/qtieditor/') >= 0 || address.indexOf('/secstatic/qti/') >= 0)) {
+		if(address.indexOf('://') < 0 && (address.indexOf('/secstatic/qtieditor/') >= 0 || address.indexOf('/secstatic/qti/') >= 0)) {
 			videoUrl = address;
 		} else if(address.indexOf('://') < 0 && ((provider != "rtmp" && provider != "http") ||
 				((provider == "rtmp" || provider == "http") && (streamer == undefined || streamer.length == 0)))) {
-- 
GitLab