Nucleus CMSの新リリースを準備するためのリポジトリ。現在はNucleus CMS 4.0にマージするためのコードをコミットしている。
Revision | 0b0d97c84f9036baa2688caa073e3c59a7e12182 (tree) |
---|---|
Time | 2012-07-30 08:32:19 |
Author | shizuki <shizuki@kine...> |
Commiter | shizuki |
FIX:Strict Standards: Only variables should be passed by reference in
ITEMACTIONS.php on line 820 の修正
@@ -817,7 +817,8 @@ class ItemActions extends BaseActions | ||
817 | 817 | $handler->setCurrentItem($this->currentItem); |
818 | 818 | |
819 | 819 | $parser = new Parser($handler); |
820 | - $parser->parse($handler->highlight($data)); | |
820 | + $highlight = $handler->highlight($data); | |
821 | + $parser->parse($highlight); | |
821 | 822 | return; |
822 | 823 | } |
823 | 824 |