Index: /FCKeditor/trunk/_dev/lint.bat
===================================================================
--- /FCKeditor/trunk/_dev/lint.bat	(revision 70)
+++ /FCKeditor/trunk/_dev/lint.bat	(revision 71)
@@ -1,3 +1,21 @@
-@echo off
-bin\jsl -process ..\editor\*.js -conf lint.conf +recurse -nofilelisting -nologo
-bin\jsl -process ..\editor\*.html -conf lint.conf +recurse -nofilelisting -nologo -pauseatend
+@ECHO OFF
+
+IF "%1"=="" GOTO NoParam
+
+ECHO Generating %1...
+bin\jsl -conf lint.conf -nofilelisting -nologo > %1
+
+ECHO.
+ECHO Process completed.
+ECHO.
+
+GOTO End
+
+:NoParam
+
+bin\jsl -conf lint.conf -nofilelisting -nologo
+
+ECHO.
+
+:End
+
Index: /FCKeditor/trunk/_dev/lint.conf
===================================================================
--- /FCKeditor/trunk/_dev/lint.conf	(revision 70)
+++ /FCKeditor/trunk/_dev/lint.conf	(revision 71)
@@ -17,5 +17,5 @@
 -redeclared_var               # redeclaration of {0} {1}
 +anon_no_return_value         # anonymous function does not always return a value
--missing_semicolon            # missing semicolon
++missing_semicolon            # missing semicolon
 +meaningless_block            # meaningless block; curly braces have no impact
 +comma_separated_stmts        # multiple statements separated by commas (use semicolons?)
@@ -128,2 +128,13 @@
 #
 #+process jsl-test.js
++recurse
++process ..\editor\*.js
++process ..\editor\*.html
++process ..\samples\*.js
++process ..\samples\*.html
++process ..\_test\*.js
++process ..\_test\*.html
++process ..\_testcases\*.js
++process ..\_testcases\*.html
++process ..\fckconfig.js
++process ..\fckeditor.js
Index: /FCKeditor/trunk/_dev/lint_report.bat
===================================================================
--- /FCKeditor/trunk/_dev/lint_report.bat	(revision 71)
+++ /FCKeditor/trunk/_dev/lint_report.bat	(revision 71)
@@ -0,0 +1,3 @@
+@ECHO OFF
+
+lint lint_report.txt
Index: /FCKeditor/trunk/_dev/lint_report.txt
===================================================================
--- /FCKeditor/trunk/_dev/lint_report.txt	(revision 71)
+++ /FCKeditor/trunk/_dev/lint_report.txt	(revision 71)
@@ -0,0 +1,2 @@
+
+0 error(s), 0 warning(s)
Index: /FCKeditor/trunk/_test/automated/_jsunit/app/jsUnitCore.js
===================================================================
--- /FCKeditor/trunk/_test/automated/_jsunit/app/jsUnitCore.js	(revision 70)
+++ /FCKeditor/trunk/_test/automated/_jsunit/app/jsUnitCore.js	(revision 71)
@@ -227,7 +227,9 @@
             default: //Object | Array
                 var i;
-                if (isEqual = (var1.length === var2.length))
+                if ( (isEqual = (var1.length === var2.length)) )
+                {
                     for (i in var1)
                         assertObjectEquals(msg + ' found nested ' + type + '@' + i + '\n', var1[i], var2[i]);
+                }
         }
         _assert(msg, isEqual, 'Expected ' + _displayStringForValue(var1) + ' but was ' + _displayStringForValue(var2));
Index: /FCKeditor/trunk/_test/automated/_jsunit/app/jsUnitTestManager.js
===================================================================
--- /FCKeditor/trunk/_test/automated/_jsunit/app/jsUnitTestManager.js	(revision 70)
+++ /FCKeditor/trunk/_test/automated/_jsunit/app/jsUnitTestManager.js	(revision 71)
@@ -473,5 +473,5 @@
     try {
         var content;
-        if (content = this.uiFrames[layerName].document.getElementById('content'))
+        if ( (content = this.uiFrames[layerName].document.getElementById('content')) )
             content.innerHTML = str;
         else
Index: /FCKeditor/trunk/_test/automated/_jsunit/app/main-data.html
===================================================================
--- /FCKeditor/trunk/_test/automated/_jsunit/app/main-data.html	(revision 70)
+++ /FCKeditor/trunk/_test/automated/_jsunit/app/main-data.html	(revision 71)
@@ -83,5 +83,5 @@
         } else {
             document.write("<br>");
-        };
+        }
     </script>
 
Index: /FCKeditor/trunk/_test/manual/fckdomrange/test1.html
===================================================================
--- /FCKeditor/trunk/_test/manual/fckdomrange/test1.html	(revision 70)
+++ /FCKeditor/trunk/_test/manual/fckdomrange/test1.html	(revision 71)
@@ -61,8 +61,13 @@
 }
 
+function CheckStartOfBlock()
+{
+	alert( oRange.CheckStartOfBlock() ) ;
+	oRange.Window.focus() ;
+}
+
 function CheckEndOfBlock()
 {
 	alert( oRange.CheckEndOfBlock() ) ;
-	AutoSelect() ;
 	oRange.Window.focus() ;
 }
@@ -79,4 +84,10 @@
 {
 	alert( oRange.CheckIsCollapsed() ) ;
+	oRange.Window.focus() ;
+}
+
+function CheckIsEmpty()
+{
+	alert( oRange.CheckIsEmpty() ) ;
 	oRange.Window.focus() ;
 }
@@ -183,6 +194,8 @@
 		<input type="button" value="Extract Contents" onclick="ExtractContents(); return false;" />
 		<input type="button" value="Check End of Block" onclick="CheckEndOfBlock(); return false;" />
+		<input type="button" value="Check Start of Block" onclick="CheckStartOfBlock(); return false;" />
 		<input type="button" value="Collapse" onclick="Collapse(); return false;" />
 		<input type="button" value="Check Is Collapsed" onclick="CheckIsCollapsed(); return false;" />
+		<input type="button" value="Check Is Empty" onclick="CheckIsEmpty(); return false;" />
 	</p>
 	<table>
Index: /FCKeditor/trunk/editor/_source/classes/fckiecleanup.js
===================================================================
--- /FCKeditor/trunk/editor/_source/classes/fckiecleanup.js	(revision 70)
+++ /FCKeditor/trunk/editor/_source/classes/fckiecleanup.js	(revision 71)
@@ -40,5 +40,5 @@
 		// It is important to remove from the end to the beginning (pop()),
 		// because of the order things get created in the editor. In the code,
-		// elements in deeper position in the DOm are placed in the end of the
+		// elements in deeper position in the DOM are placed at the end of the
 		// cleanup function, so we must cleanup then first, otherwise IE could
 		// throw some crazy memory errors (IE bug).
Index: /FCKeditor/trunk/editor/dialog/fck_image/fck_image.js
===================================================================
--- /FCKeditor/trunk/editor/dialog/fck_image/fck_image.js	(revision 70)
+++ /FCKeditor/trunk/editor/dialog/fck_image/fck_image.js	(revision 71)
@@ -442,5 +442,5 @@
 	}
 
-	sActualBrowser = ''
+	sActualBrowser = '' ;
 	SetUrl( fileUrl ) ;
 	GetE('frmUpload').reset() ;
Index: /FCKeditor/trunk/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js
===================================================================
--- /FCKeditor/trunk/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js	(revision 70)
+++ /FCKeditor/trunk/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js	(revision 71)
@@ -291,5 +291,5 @@
 	// skip if this is the first word!
 	var ti = this.currentTextIndex;
-	var wi = this.currentWordIndex
+	var wi = this.currentWordIndex;
 	
 	if( this.wordWin.totalPreviousWords( ti, wi ) > 0 ) {
Index: /FCKeditor/trunk/editor/lang/af.js
===================================================================
--- /FCKeditor/trunk/editor/lang/af.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/af.js	(revision 71)
@@ -487,3 +487,3 @@
 DlgAboutLicense		: "Lesensie volgens GNU Lesser General Public License terme",
 DlgAboutInfo		: "Vir meer informasie gaan na "
-}
+};
Index: /FCKeditor/trunk/editor/lang/ar.js
===================================================================
--- /FCKeditor/trunk/editor/lang/ar.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/ar.js	(revision 71)
@@ -488,3 +488,3 @@
 DlgAboutLicense		: "مرخّص بحسب قانون  GNU LGPL",
 DlgAboutInfo		: "لمزيد من المعلومات تفضل بزيارة"
-}
+};
Index: /FCKeditor/trunk/editor/lang/bg.js
===================================================================
--- /FCKeditor/trunk/editor/lang/bg.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/bg.js	(revision 71)
@@ -487,3 +487,3 @@
 DlgAboutLicense		: "Лиценз по условията на GNU Lesser General Public License",
 DlgAboutInfo		: "За повече информация посетете"
-}
+};
Index: /FCKeditor/trunk/editor/lang/bn.js
===================================================================
--- /FCKeditor/trunk/editor/lang/bn.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/bn.js	(revision 71)
@@ -488,3 +488,3 @@
 DlgAboutLicense		: "লাইসেন্স GNU LGPL এর নীতিমালার অধীনে ",
 DlgAboutInfo		: "আরও তথ্যের জন্য যান"
-}
+};
Index: /FCKeditor/trunk/editor/lang/bs.js
===================================================================
--- /FCKeditor/trunk/editor/lang/bs.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/bs.js	(revision 71)
@@ -487,3 +487,3 @@
 DlgAboutLicense		: "Licencirano pod uslovima GNU Lesser General Public License",
 DlgAboutInfo		: "Za više informacija posjetite"
-}
+};
Index: /FCKeditor/trunk/editor/lang/ca.js
===================================================================
--- /FCKeditor/trunk/editor/lang/ca.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/ca.js	(revision 71)
@@ -488,3 +488,3 @@
 DlgAboutLicense		: "Segons els termes de la Llicència GNU Lesser General Public License",
 DlgAboutInfo		: "Per a més informació aneu a"
-}
+};
Index: /FCKeditor/trunk/editor/lang/cs.js
===================================================================
--- /FCKeditor/trunk/editor/lang/cs.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/cs.js	(revision 71)
@@ -489,3 +489,3 @@
 DlgAboutLicense		: "Licencováno pod GNU Lesser General Public License",
 DlgAboutInfo		: "Více informací získáte na"
-}
+};
Index: /FCKeditor/trunk/editor/lang/da.js
===================================================================
--- /FCKeditor/trunk/editor/lang/da.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/da.js	(revision 71)
@@ -489,3 +489,3 @@
 DlgAboutLicense		: "Licens under vilkår for GNU Lesser General Public License",
 DlgAboutInfo		: "For yderlig information gå til"
-}
+};
Index: /FCKeditor/trunk/editor/lang/de.js
===================================================================
--- /FCKeditor/trunk/editor/lang/de.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/de.js	(revision 71)
@@ -488,3 +488,3 @@
 DlgAboutLicense		: "Lizensiert unter den Richtlinien der GNU Lesser General Public License",
 DlgAboutInfo		: "Für weitere Informationen siehe"
-}
+};
Index: /FCKeditor/trunk/editor/lang/el.js
===================================================================
--- /FCKeditor/trunk/editor/lang/el.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/el.js	(revision 71)
@@ -488,3 +488,3 @@
 DlgAboutLicense		: "Άδεια χρήσης υπό τους όρους της GNU Lesser General Public License",
 DlgAboutInfo		: "Για περισσότερες πληροφορίες"
-}
+};
Index: /FCKeditor/trunk/editor/lang/en-au.js
===================================================================
--- /FCKeditor/trunk/editor/lang/en-au.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/en-au.js	(revision 71)
@@ -488,3 +488,3 @@
 DlgAboutLicense		: "Licensed under the terms of the GNU Lesser General Public License",
 DlgAboutInfo		: "For further information go to"
-}
+};
Index: /FCKeditor/trunk/editor/lang/en-ca.js
===================================================================
--- /FCKeditor/trunk/editor/lang/en-ca.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/en-ca.js	(revision 71)
@@ -488,3 +488,3 @@
 DlgAboutLicense		: "Licensed under the terms of the GNU Lesser General Public License",
 DlgAboutInfo		: "For further information go to"
-}
+};
Index: /FCKeditor/trunk/editor/lang/en-uk.js
===================================================================
--- /FCKeditor/trunk/editor/lang/en-uk.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/en-uk.js	(revision 71)
@@ -488,3 +488,3 @@
 DlgAboutLicense		: "Licensed under the terms of the GNU Lesser General Public License",
 DlgAboutInfo		: "For further information go to"
-}
+};
Index: /FCKeditor/trunk/editor/lang/en.js
===================================================================
--- /FCKeditor/trunk/editor/lang/en.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/en.js	(revision 71)
@@ -487,3 +487,3 @@
 DlgAboutLicense		: "Licensed under the terms of the GNU Lesser General Public License",
 DlgAboutInfo		: "For further information go to"
-}
+};
Index: /FCKeditor/trunk/editor/lang/eo.js
===================================================================
--- /FCKeditor/trunk/editor/lang/eo.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/eo.js	(revision 71)
@@ -487,3 +487,3 @@
 DlgAboutLicense		: "Disdonata laŭ la GNU Lesser General Public License",
 DlgAboutInfo		: "Por pli da informoj, vizitu"
-}
+};
Index: /FCKeditor/trunk/editor/lang/es.js
===================================================================
--- /FCKeditor/trunk/editor/lang/es.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/es.js	(revision 71)
@@ -487,3 +487,3 @@
 DlgAboutLicense		: "Licenciado bajo los términos de GNU Lesser General Public License",
 DlgAboutInfo		: "Para mayor información por favor dirigirse a"
-}
+};
Index: /FCKeditor/trunk/editor/lang/et.js
===================================================================
--- /FCKeditor/trunk/editor/lang/et.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/et.js	(revision 71)
@@ -488,3 +488,3 @@
 DlgAboutLicense		: "Litsenseeritud GNU Lesser General Public License litsentsiga",
 DlgAboutInfo		: "Täpsema info saamiseks mine"
-}
+};
Index: /FCKeditor/trunk/editor/lang/eu.js
===================================================================
--- /FCKeditor/trunk/editor/lang/eu.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/eu.js	(revision 71)
@@ -488,3 +488,3 @@
 DlgAboutLicense		: "GNU Lesser General Public License Lizentziapean",
 DlgAboutInfo		: "Informazio gehiago eskuratzeko hona joan"
-}
+};
Index: /FCKeditor/trunk/editor/lang/fa.js
===================================================================
--- /FCKeditor/trunk/editor/lang/fa.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/fa.js	(revision 71)
@@ -488,3 +488,3 @@
 DlgAboutLicense		: "لیسانس برپایهٴبندهای آیین‌نامهٴ GNU Lesser General Public License",
 DlgAboutInfo		: "برای آگاهی بیشتر به این نشانی بروید"
-}
+};
Index: /FCKeditor/trunk/editor/lang/fi.js
===================================================================
--- /FCKeditor/trunk/editor/lang/fi.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/fi.js	(revision 71)
@@ -487,3 +487,3 @@
 DlgAboutLicense		: "Lisenssi: GNU Lesser General Public License",
 DlgAboutInfo		: "Lisää tietoa osoitteesta"
-}
+};
Index: /FCKeditor/trunk/editor/lang/fo.js
===================================================================
--- /FCKeditor/trunk/editor/lang/fo.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/fo.js	(revision 71)
@@ -488,3 +488,3 @@
 DlgAboutLicense		: "Loyvi undir treytum fyri GNU Lesser General Public License",
 DlgAboutInfo		: "Fleiri upplýsingar, far til"
-}
+};
Index: /FCKeditor/trunk/editor/lang/fr.js
===================================================================
--- /FCKeditor/trunk/editor/lang/fr.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/fr.js	(revision 71)
@@ -487,3 +487,3 @@
 DlgAboutLicense		: "License selon les termes de GNU Lesser General Public License",
 DlgAboutInfo		: "Pour plus d'informations, aller à"
-}
+};
Index: /FCKeditor/trunk/editor/lang/gl.js
===================================================================
--- /FCKeditor/trunk/editor/lang/gl.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/gl.js	(revision 71)
@@ -487,3 +487,3 @@
 DlgAboutLicense		: "Licencia concedida baixo os termos da GNU Lesser General Public License",
 DlgAboutInfo		: "Para máis información visitar:"
-}
+};
Index: /FCKeditor/trunk/editor/lang/he.js
===================================================================
--- /FCKeditor/trunk/editor/lang/he.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/he.js	(revision 71)
@@ -488,3 +488,3 @@
 DlgAboutLicense		: "ברשיון תחת תנאי GNU Lesser General Public License",
 DlgAboutInfo		: "מידע נוסף ניתן למצוא כאן:"
-}
+};
Index: /FCKeditor/trunk/editor/lang/hi.js
===================================================================
--- /FCKeditor/trunk/editor/lang/hi.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/hi.js	(revision 71)
@@ -487,3 +487,3 @@
 DlgAboutLicense		: "लाइसेंस :GNU LGPL",
 DlgAboutInfo		: "अधिक जानकारी के लिये यहाँ जायें:"
-}
+};
Index: /FCKeditor/trunk/editor/lang/hr.js
===================================================================
--- /FCKeditor/trunk/editor/lang/hr.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/hr.js	(revision 71)
@@ -487,3 +487,3 @@
 DlgAboutLicense		: "Licencirano pod uvjetima GNU Lesser General Public License",
 DlgAboutInfo		: "Za više informacija posjetite"
-}
+};
Index: /FCKeditor/trunk/editor/lang/hu.js
===================================================================
--- /FCKeditor/trunk/editor/lang/hu.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/hu.js	(revision 71)
@@ -488,3 +488,3 @@
 DlgAboutLicense		: "GNU Lesser General Public License szabadalom alá tartozik",
 DlgAboutInfo		: "További információkért látogasson el ide:"
-}
+};
Index: /FCKeditor/trunk/editor/lang/it.js
===================================================================
--- /FCKeditor/trunk/editor/lang/it.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/it.js	(revision 71)
@@ -487,3 +487,3 @@
 DlgAboutLicense		: "Rilasciato sotto la licensa GNU Lesser General Public License",
 DlgAboutInfo		: "Per maggiori informazioni visitare"
-}
+};
Index: /FCKeditor/trunk/editor/lang/ja.js
===================================================================
--- /FCKeditor/trunk/editor/lang/ja.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/ja.js	(revision 71)
@@ -487,3 +487,3 @@
 DlgAboutLicense		: "Licensed under the terms of the GNU Lesser General Public License",
 DlgAboutInfo		: "より詳しい情報はこちらで"
-}
+};
Index: /FCKeditor/trunk/editor/lang/km.js
===================================================================
--- /FCKeditor/trunk/editor/lang/km.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/km.js	(revision 71)
@@ -487,3 +487,3 @@
 DlgAboutLicense		: "Licensed under the terms of the GNU Lesser General Public License",
 DlgAboutInfo		: "សំរាប់ព៌តមានផ្សេងទៀត សូមទាក់ទង"
-}
+};
Index: /FCKeditor/trunk/editor/lang/ko.js
===================================================================
--- /FCKeditor/trunk/editor/lang/ko.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/ko.js	(revision 71)
@@ -488,3 +488,3 @@
 DlgAboutLicense		: "Licensed under the terms of the GNU Lesser General Public License",
 DlgAboutInfo		: "For further information go to"
-}
+};
Index: /FCKeditor/trunk/editor/lang/lt.js
===================================================================
--- /FCKeditor/trunk/editor/lang/lt.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/lt.js	(revision 71)
@@ -487,3 +487,3 @@
 DlgAboutLicense		: "Licencijuota pagal GNU mažesnės atsakomybės pagrindinės viešos licencijos sąlygas",
 DlgAboutInfo		: "Papildomą informaciją galima gauti"
-}
+};
Index: /FCKeditor/trunk/editor/lang/lv.js
===================================================================
--- /FCKeditor/trunk/editor/lang/lv.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/lv.js	(revision 71)
@@ -488,3 +488,3 @@
 DlgAboutLicense		: "Programmatūra lietojama saskaņā ar GNU Lesser General Public License",
 DlgAboutInfo		: "Papildus informācija ir pieejama"
-}
+};
Index: /FCKeditor/trunk/editor/lang/mn.js
===================================================================
--- /FCKeditor/trunk/editor/lang/mn.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/mn.js	(revision 71)
@@ -487,3 +487,3 @@
 DlgAboutLicense		: "GNU цөөн ерөнхий нийтийн лицензийн ангилалд багтсан зөвшөөрөлтэй",
 DlgAboutInfo		: "Мэдээллээр туслах"
-}
+};
Index: /FCKeditor/trunk/editor/lang/ms.js
===================================================================
--- /FCKeditor/trunk/editor/lang/ms.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/ms.js	(revision 71)
@@ -487,3 +487,3 @@
 DlgAboutLicense		: "Perlesenan dibawah terma GNU Lesser General Public License",
 DlgAboutInfo		: "Untuk maklumat lanjut sila pergi ke"
-}
+};
Index: /FCKeditor/trunk/editor/lang/nb.js
===================================================================
--- /FCKeditor/trunk/editor/lang/nb.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/nb.js	(revision 71)
@@ -487,3 +487,3 @@
 DlgAboutLicense		: "Lisensiert under GNU Lesser General Public License",
 DlgAboutInfo		: "Oversatt av Siteman AS<br /><a target=\"_blank\" href=\"http://www.siteman.no\">www.siteman.no</a><br /><br />For mer informasjon gå til"
-}
+};
Index: /FCKeditor/trunk/editor/lang/nl.js
===================================================================
--- /FCKeditor/trunk/editor/lang/nl.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/nl.js	(revision 71)
@@ -488,3 +488,3 @@
 DlgAboutLicense		: "Gelicenceerd onder de condities van het GNU Lesser General Public License",
 DlgAboutInfo		: "Voor meer informatie ga naar "
-}
+};
Index: /FCKeditor/trunk/editor/lang/no.js
===================================================================
--- /FCKeditor/trunk/editor/lang/no.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/no.js	(revision 71)
@@ -487,3 +487,3 @@
 DlgAboutLicense		: "Lisensiert under GNU Lesser General Public License",
 DlgAboutInfo		: "Oversatt av Siteman AS<br /><a target=\"_blank\" href=\"http://www.siteman.no\">www.siteman.no</a><br /><br />For mer informasjon g til"
-}
+};
Index: /FCKeditor/trunk/editor/lang/pl.js
===================================================================
--- /FCKeditor/trunk/editor/lang/pl.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/pl.js	(revision 71)
@@ -488,3 +488,3 @@
 DlgAboutLicense		: "na licencji GNU Lesser General Public License",
 DlgAboutInfo		: "Więcej informacji uzyskasz pod adresem"
-}
+};
Index: /FCKeditor/trunk/editor/lang/pt-br.js
===================================================================
--- /FCKeditor/trunk/editor/lang/pt-br.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/pt-br.js	(revision 71)
@@ -489,3 +489,3 @@
 DlgAboutLicense		: "Licenciado sob os termos da GNU Lesser General Public License",
 DlgAboutInfo		: "Para maiores informações visite"
-}
+};
Index: /FCKeditor/trunk/editor/lang/pt.js
===================================================================
--- /FCKeditor/trunk/editor/lang/pt.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/pt.js	(revision 71)
@@ -487,3 +487,3 @@
 DlgAboutLicense		: "Licenciado segundo os términos de GNU Lesser General Public License",
 DlgAboutInfo		: "Para mais informações por favor dirija-se a"
-}
+};
Index: /FCKeditor/trunk/editor/lang/ro.js
===================================================================
--- /FCKeditor/trunk/editor/lang/ro.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/ro.js	(revision 71)
@@ -488,3 +488,3 @@
 DlgAboutLicense		: "Licenţiat sub termenii GNU Lesser General Public License",
 DlgAboutInfo		: "Pentru informaţii amănunţite, vizitaţi"
-}
+};
Index: /FCKeditor/trunk/editor/lang/ru.js
===================================================================
--- /FCKeditor/trunk/editor/lang/ru.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/ru.js	(revision 71)
@@ -487,3 +487,3 @@
 DlgAboutLicense		: "Лицензировано в соответствии с условиями GNU Lesser General Public License",
 DlgAboutInfo		: "Для большей информации, посетите"
-}
+};
Index: /FCKeditor/trunk/editor/lang/sk.js
===================================================================
--- /FCKeditor/trunk/editor/lang/sk.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/sk.js	(revision 71)
@@ -488,3 +488,3 @@
 DlgAboutLicense		: "Licencované pod pravidlami GNU Lesser General Public License",
 DlgAboutInfo		: "Viac informácií získate na"
-}
+};
Index: /FCKeditor/trunk/editor/lang/sl.js
===================================================================
--- /FCKeditor/trunk/editor/lang/sl.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/sl.js	(revision 71)
@@ -487,3 +487,3 @@
 DlgAboutLicense		: "Pravica za uporabo pod pogoji GNU Lesser General Public License",
 DlgAboutInfo		: "Za več informacij obiščite"
-}
+};
Index: /FCKeditor/trunk/editor/lang/sr-latn.js
===================================================================
--- /FCKeditor/trunk/editor/lang/sr-latn.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/sr-latn.js	(revision 71)
@@ -487,3 +487,3 @@
 DlgAboutLicense		: "Licencirano pod uslovima GNU Lesser General Public License",
 DlgAboutInfo		: "Za više informacija posetite"
-}
+};
Index: /FCKeditor/trunk/editor/lang/sr.js
===================================================================
--- /FCKeditor/trunk/editor/lang/sr.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/sr.js	(revision 71)
@@ -487,3 +487,3 @@
 DlgAboutLicense		: "Лиценцирано под условима GNU Lesser General Public License",
 DlgAboutInfo		: "За више информација посетите"
-}
+};
Index: /FCKeditor/trunk/editor/lang/sv.js
===================================================================
--- /FCKeditor/trunk/editor/lang/sv.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/sv.js	(revision 71)
@@ -487,3 +487,3 @@
 DlgAboutLicense		: "Licensierad under villkoren av GNU Lesser General Public License",
 DlgAboutInfo		: "För mer information se"
-}
+};
Index: /FCKeditor/trunk/editor/lang/th.js
===================================================================
--- /FCKeditor/trunk/editor/lang/th.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/th.js	(revision 71)
@@ -488,3 +488,3 @@
 DlgAboutLicense		: "สงวนลิขสิทธิ์ โดยนโยบายลิขสิทธิ์แบบ GNU Lesser General Public License",
 DlgAboutInfo		: "ข้อมูลเพิ่มเติมภาษาไทยติดต่อ</BR>นาย ชรินทร์ อาษากิจ (อู้ด)</BR><A HREF='mailto:arsakit@gmail.com'>arsakit@gmail.com</A> tel. (+66) 06-9241924</BR>หรือดาวน์โหลดรุ่นภาษาไทยได้ที่เว็บไซต์</BR><A HREF='http://www.thaimall4u.com'>www.Thaimall4u.com</A></BR>ข้อมูลเพิ่มเติมภาษาอังกฤษ กรุณาไปที่นี่"
-}
+};
Index: /FCKeditor/trunk/editor/lang/tr.js
===================================================================
--- /FCKeditor/trunk/editor/lang/tr.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/tr.js	(revision 71)
@@ -488,3 +488,3 @@
 DlgAboutLicense		: "GNU Kısıtlı Kamu Lisansı (LGPL) koşulları altında lisanslanmıştır",
 DlgAboutInfo		: "Daha fazla bilgi için:"
-}
+};
Index: /FCKeditor/trunk/editor/lang/uk.js
===================================================================
--- /FCKeditor/trunk/editor/lang/uk.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/uk.js	(revision 71)
@@ -487,3 +487,3 @@
 DlgAboutLicense		: "Ліцензовано згідно умовам GNU Lesser General Public License",
 DlgAboutInfo		: "Додаткову інформацію дивіться на "
-}
+};
Index: /FCKeditor/trunk/editor/lang/vi.js
===================================================================
--- /FCKeditor/trunk/editor/lang/vi.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/vi.js	(revision 71)
@@ -488,3 +488,3 @@
 DlgAboutLicense		: "Được cấp phép theo các điều khoản của giấy phép GNU Lesser General Public License",
 DlgAboutInfo		: "Để biết thêm thông tin, hãy truy cập"
-}
+};
Index: /FCKeditor/trunk/editor/lang/zh-cn.js
===================================================================
--- /FCKeditor/trunk/editor/lang/zh-cn.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/zh-cn.js	(revision 71)
@@ -487,3 +487,3 @@
 DlgAboutLicense		: "基于 GNU 通用公共许可证授权发布 ",
 DlgAboutInfo		: "要获得更多信息请访问 "
-}
+};
Index: /FCKeditor/trunk/editor/lang/zh.js
===================================================================
--- /FCKeditor/trunk/editor/lang/zh.js	(revision 70)
+++ /FCKeditor/trunk/editor/lang/zh.js	(revision 71)
@@ -487,3 +487,3 @@
 DlgAboutLicense		: "依據 GNU 較寬鬆公共許可證(LGPL)發佈",
 DlgAboutInfo		: "想獲得更多資訊請至 "
-}
+};
Index: /FCKeditor/trunk/editor/plugins/placeholder/fckplugin.js
===================================================================
--- /FCKeditor/trunk/editor/plugins/placeholder/fckplugin.js	(revision 70)
+++ /FCKeditor/trunk/editor/plugins/placeholder/fckplugin.js	(revision 71)
@@ -78,4 +78,6 @@
 			return true ;
 	}
+
+	return false ;
 }
 
