その2

SimpleViewフィルタがアクションのリダイレクトに対応してなかった。。。
単純に"action:"の判断が抜けてるだけだす。

} else if (preg_match("/action:/", $template)) {
    $action = preg_replace("/action:/", "", $template);
    $action = trim($action);
    $actionChain =& $container->getComponent("ActionChain");
    $actionChain->add($action);

コミットは帰ってから。

追記:これも昨日と同じ理由でDebugがOnの場合に動作しません。
アクションチェーンの繰り返しの際に先にDebugフィルタが発動してしまうためですね。
うう、深いかも。。。
デバッグはフィルタである必然性もないので、フィルタではなくてコアに入れて
Controllerの最後で呼ぶようにしたほうがいいかも。。。