[freeside-commits] branch master updated. 7bd0d379405922c9d64474b305c57ae17de0ea41

Ivan ivan at 420.am
Tue Mar 19 17:44:04 PDT 2013


The branch, master has been updated
       via  7bd0d379405922c9d64474b305c57ae17de0ea41 (commit)
      from  be49cf6b227c698d16238d1be6c9c7785fa5870d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 7bd0d379405922c9d64474b305c57ae17de0ea41
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Tue Mar 19 17:44:02 2013 -0700

    quick fix for IE10 issue w/fckeditor, RT#22014

diff --git a/httemplate/elements/fckeditor/fckeditor.js b/httemplate/elements/fckeditor/fckeditor.js
index 8e0126b..eb7d339 100644
--- a/httemplate/elements/fckeditor/fckeditor.js
+++ b/httemplate/elements/fckeditor/fckeditor.js
@@ -304,7 +304,7 @@ function FCKeditor_IsCompatibleBrowser()
 	// Internet Explorer 5.5+
 	if ( /*@cc_on!@*/false && sAgent.indexOf("mac") == -1 )
 	{
-		var sBrowserVersion = navigator.appVersion.match(/MSIE (.\..)/)[1] ;
+		var sBrowserVersion = navigator.appVersion.match(/MSIE ([\d.]+)/)[1] ;
 		return ( sBrowserVersion >= 5.5 ) ;
 	}
 

-----------------------------------------------------------------------

Summary of changes:
 httemplate/elements/fckeditor/fckeditor.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)




More information about the freeside-commits mailing list