fix quoting problems in webgui tinymce image plug-in

This commit is contained in:
Colin Kuskie 2008-12-05 18:46:43 +00:00
parent 187c19b84e
commit 0768af119f
2 changed files with 3 additions and 2 deletions

View file

@ -3,6 +3,7 @@
- fixed #8774: Forum Rich Edit no longer supports indent/outdent
- fixed #4173: fieldnames in profilefields can contain spaces
- fixed #8811: Bug Tracker: Formatting is bad for the resolution form.
- fixed #9235: Image Bug in rich text editor.
7.6.5
- security: A problem was discovered and fixed in which users could email executable attachments to a collaboration system and then when viewed online, could execute them.

View file

@ -43,10 +43,10 @@ var WGInsertImageDialog = {
img += ' hspace="' + parseInt(form.imagehspace.value) + '"';
}
if (form.imagevspace.value != "") {
img += ' vspace="' + parseInt(form.imagevspace.value) + "'";
img += ' vspace="' + parseInt(form.imagevspace.value) + '"';
}
if (form.imageborder.value != "") {
img += ' border="' + parseInt(form.imageborder.value) + "'";
img += ' border="' + parseInt(form.imageborder.value) + '"';
}
if (form.imagealign.value != "") {
img += ' align="' + form.imagealign.value + '"';