Raindrops 0.959 レビュー提出しました

現在まだライブになっていないのですが、0.958にバグが見つかりましたので、0.959をレビューに提出しました

*0.958 bug report

comment tag not closed

how to fix bug

functions.php
line:1250
Correct code below
Please change highlight line
[php firstline=”1250″ highlight=”1259,1265″]
}
$css .= get_post_meta($post->ID, ‘css’, true);
if (!empty($css)) {
$result .= ‘<style type="text/css">’;
$result .= "\n<!–/*<![CDATA[*/\n";
$result .= $css;
$result .= "\n/*]]>*/–>\n";
$result .= "</style>";
}
$javascript = get_post_meta($post->ID, ‘javascript’, true);
if (!empty($javascript)) {
$result .= ‘<script type="text/javascript">’;
$result .= "\n<!–/*<![CDATA[*/\n";
$result .= $javascript;
$result .= "\n/*]]>*/–>\n";
$result .= "</script>";
}
$meta = get_post_meta($post->ID, ‘meta’, true);
if (!empty($meta)) {
$result .= $meta;
}
endwhile;
[/php]

主要ブラウザでの表示は、問題なく行われている模様ですが、0.958がライブになった場合には恐縮ですが、ハイライト行部分のように修正いただけますようお願いします。

バク以外の0.959での変更については、次の投稿でお知らせします


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