Error in Imagebrowser (fck)
Posted: Thu Oct 21, 2010 4:04 pm
Just a small error i fixed in 6.1:
File: src/jsp/fckeditor-2.6.4.1/editor/filemanager/browser/emm/browser.jsp Line: 65
has to be:
The JS-Function updateImg() gets the image with document.theimage.src where theimage should be a name and not an id -> http://de.selfhtml.org/javascript/objekte/images.htm
Actually Mozilla gets it done with id but IE and Webkit does not!
File: src/jsp/fckeditor-2.6.4.1/editor/filemanager/browser/emm/browser.jsp Line: 65
Code: Select all
<img src="images/spacer.gif" id="theimage" border="1">
Code: Select all
<img src="images/spacer.gif" name="theimage" border="1">
Actually Mozilla gets it done with id but IE and Webkit does not!