Commit dd2caf81 by seldaek

Fixes wrong arg order when using cycle with assign

git-svn-id: svn://dwoo.org/dwoo/trunk@222 0598d79b-80c4-4d41-97ba-ac86fbbd088b
parent a4b98908
......@@ -61,7 +61,7 @@ class Dwoo_Plugin_cycle extends Dwoo_Plugin
}
if ($assign !== null) {
$this->dwoo->assignInScope($assign, $out);
$this->dwoo->assignInScope($out, $assign);
} else {
return $out;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment