Ticket #2011: 2011.patch
File 2011.patch, 1.2 KB (added by , 15 years ago) |
---|
-
_whatsnew.html
67 67 Fixed XHTML source formatting errors in non-IE browsers.</li> 68 68 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2000">#2000</a>] The # 69 69 character is now properly encoded in file names returned by the File Browser.</li> 70 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2011">#2011</a>] Internal 71 CSS <style> tags where being outputted when FullPage=true.</li> 70 72 </ul> 71 73 <h3> 72 74 Version 2.6 Beta 1</h3> -
editor/_source/internals/fcktools.js
129 129 if ( /[\\\/\.]\w*$/.test( cssFileOrArrayOrDef ) ) 130 130 { 131 131 // The string may have several URLs separated by comma. 132 return this.GetStyleHtml( cssFileOrArrayOrDef.split(',') ) ;132 return this.GetStyleHtml( cssFileOrArrayOrDef.split(','), markTemp ) ; 133 133 } 134 134 else 135 135 return getStyle( this._GetUrlFixedCss( cssFileOrArrayOrDef ), markTemp ) ;