fix quoting problems in webgui tinymce image plug-in
This commit is contained in:
parent
187c19b84e
commit
0768af119f
2 changed files with 3 additions and 2 deletions
|
|
@ -3,6 +3,7 @@
|
||||||
- fixed #8774: Forum Rich Edit no longer supports indent/outdent
|
- fixed #8774: Forum Rich Edit no longer supports indent/outdent
|
||||||
- fixed #4173: fieldnames in profilefields can contain spaces
|
- fixed #4173: fieldnames in profilefields can contain spaces
|
||||||
- fixed #8811: Bug Tracker: Formatting is bad for the resolution form.
|
- fixed #8811: Bug Tracker: Formatting is bad for the resolution form.
|
||||||
|
- fixed #9235: Image Bug in rich text editor.
|
||||||
|
|
||||||
7.6.5
|
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.
|
- 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.
|
||||||
|
|
|
||||||
|
|
@ -43,10 +43,10 @@ var WGInsertImageDialog = {
|
||||||
img += ' hspace="' + parseInt(form.imagehspace.value) + '"';
|
img += ' hspace="' + parseInt(form.imagehspace.value) + '"';
|
||||||
}
|
}
|
||||||
if (form.imagevspace.value != "") {
|
if (form.imagevspace.value != "") {
|
||||||
img += ' vspace="' + parseInt(form.imagevspace.value) + "'";
|
img += ' vspace="' + parseInt(form.imagevspace.value) + '"';
|
||||||
}
|
}
|
||||||
if (form.imageborder.value != "") {
|
if (form.imageborder.value != "") {
|
||||||
img += ' border="' + parseInt(form.imageborder.value) + "'";
|
img += ' border="' + parseInt(form.imageborder.value) + '"';
|
||||||
}
|
}
|
||||||
if (form.imagealign.value != "") {
|
if (form.imagealign.value != "") {
|
||||||
img += ' align="' + form.imagealign.value + '"';
|
img += ' align="' + form.imagealign.value + '"';
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue