Ticket #2011: 2011.patch

File 2011.patch, 1.2 KB (added by fredck, 2 years ago)
  • _whatsnew.html

     
    6767                        Fixed XHTML source formatting errors in non-IE browsers.</li> 
    6868                <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2000">#2000</a>] The # 
    6969                        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 &lt;style&gt; tags where being outputted when FullPage=true.</li> 
    7072        </ul> 
    7173        <h3> 
    7274                Version 2.6 Beta 1</h3> 
  • editor/_source/internals/fcktools.js

     
    129129                        if ( /[\\\/\.]\w*$/.test( cssFileOrArrayOrDef ) ) 
    130130                        { 
    131131                                // The string may have several URLs separated by comma. 
    132                                 return this.GetStyleHtml( cssFileOrArrayOrDef.split(',') ) ; 
     132                                return this.GetStyleHtml( cssFileOrArrayOrDef.split(','), markTemp ) ; 
    133133                        } 
    134134                        else 
    135135                                return getStyle( this._GetUrlFixedCss( cssFileOrArrayOrDef ), markTemp ) ;