From 7e4e38eb0a22e35382c5ef897d7351323e4f4887 Mon Sep 17 00:00:00 2001
From: Andreas Gohr <andi@splitbrain.org>
Date: Sun, 25 Sep 2011 09:27:40 +0200
Subject: [PATCH] Fixed the Windows share warning (related to  #2274)

---
 lib/scripts/behaviour.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/scripts/behaviour.js b/lib/scripts/behaviour.js
index fc32d4ed9..20b408322 100644
--- a/lib/scripts/behaviour.js
+++ b/lib/scripts/behaviour.js
@@ -72,13 +72,13 @@ var dw_behaviour = {
      * @author Michael Klier <chi@chimeric.de>
      */
     checkWindowsShares: function() {
-        if(!LANG.nosmblinks || document.all !== null) {
+        if(!LANG.nosmblinks || typeof(document.all) !== 'undefined') {
             // No warning requested or none necessary
             return;
         }
 
         jQuery('a.windows').live('click', function(){
-            alert(LANG.nosmblinks);
+            alert(LANG.nosmblinks.replace(/\\n/,"\n"));
         });
     },
 
-- 
GitLab