On Feb 14, 4:13 pm, easp <
especk...@gmail.com> wrote:
> Thanks a lot for the fix. I note that 'attribute_escape()' is called
> two more times in that file. The errors show up in the HTML, but the
> impact isn't as obvious. I don't have the line numbers handy, but if
> you just search, you'll find them, and you can make the same edit as
> below.
>
> On Feb 12, 10:37 am, Steve Lam <
spikeys...@gmail.com> wrote:
>
>
>
> > The nightly builds still has the K2 Sidebar Manager (for now). The bug
> > appears to be in thefunctionk2_body_class in k2/app/includes/
> > info.php (line 648):
>
> > // Separates classes with a single space, collates classes for BODY
> > $c =join( ' ', attribute_escape( apply_filters('body_class', $c) ) );
>
> > Change it to:
>
> > // Separates classes with a single space, collates classes for BODY
> > $c =join( ' ', apply_filters('body_class', $c) );
>
> > -Steve