Index: lams_central/web/fckeditor/editor/plugins/equation/fckplugin.js =================================================================== RCS file: /usr/local/cvsroot/lams_central/web/fckeditor/editor/plugins/equation/Attic/fckplugin.js,v diff -u -r1.2 -r1.2.8.1 --- lams_central/web/fckeditor/editor/plugins/equation/fckplugin.js 26 Jan 2009 04:31:37 -0000 1.2 +++ lams_central/web/fckeditor/editor/plugins/equation/fckplugin.js 5 Mar 2010 03:29:39 -0000 1.2.8.1 @@ -68,7 +68,7 @@ var sName = name.match( /\\f([\[\$])(.*?)\\f[\]\$]/ ); var eq=''; - eq = escape(sName[2].replace(/\+/g,'+')); + eq = escape(sName[2]); if(sName[1]=='$') { eq='\\inline&space;'+eq; } else @@ -150,7 +150,7 @@ { var sName = aEquations[i].match( /\\f([\[\$])(.*?)\\f[\]\$]/ ); - var eq = escape(sName[2].replace(/\+/g,'+')); + var eq = escape(sName[2]); var extrastyle=''; if(sName[1]=='$') eq='\\inline&space;'+eq;