Skip to content

Commit

Permalink
Fixed Twit_Template::render() to use ob_get_clean(). [#65 state:resol…
Browse files Browse the repository at this point in the history
…ved]
  • Loading branch information
Alex Suraci committed Jan 25, 2010
1 parent 6d75acf commit a259a26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/class/Twig/api.php
Expand Up @@ -62,7 +62,7 @@ public function render($context=NULL)
{
ob_start();
$this->display($context);
return ob_end_clean();
return ob_get_clean();
}

/**
Expand Down

0 comments on commit a259a26

Please sign in to comment.