Skip to content

Commit

Permalink
Merge pull request #1169 from pedroresende/EZP-18486
Browse files Browse the repository at this point in the history
Fix EZP-18486 - PHP notice while running cronjobs/indexcontent.php cronjob
  • Loading branch information
yannickroger committed May 18, 2015
2 parents 4ca8b19 + af2b416 commit 9c57b7d
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -25,7 +25,10 @@ function parseFile( $fileName )

// save the buffer contents
$buffer = ob_get_contents();
ob_end_clean();
if ( $buffer )
{
ob_end_clean();
}

// fetch the module printout
ob_start();
Expand Down

0 comments on commit 9c57b7d

Please sign in to comment.