Index: lams_central/web/fckeditor/editor/plugins/equation/fckplugin.js =================================================================== diff -u -r2b1e00803502fb7f056c1cf8f8c2323e1b56e662 -r02640d52fc3c239ce3674dca09d7aae538aed938 --- lams_central/web/fckeditor/editor/plugins/equation/fckplugin.js (.../fckplugin.js) (revision 2b1e00803502fb7f056c1cf8f8c2323e1b56e662) +++ lams_central/web/fckeditor/editor/plugins/equation/fckplugin.js (.../fckplugin.js) (revision 02640d52fc3c239ce3674dca09d7aae538aed938) @@ -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;