Raindrops bug report

Bug: body attribute class value ‘array’ when multisite.

マルチサイトで利用した場合、body要素のクラスにarrayという値が追加される。

Please change below
functions.php line 506

from
[php firstline=”506″]
if(isset($current_blog)){
$classes[] = array(“b”. $current_blog->blog_id);
}
[/php]

to

[php firstline=”506″ highlight=”507″]
if(isset($current_blog)){
$classes[] = “b”. $current_blog->blog_id;
}
[/php]

This bug will be fixed the version 0.981 of Raindrops .


コメントは受け付けていません。