Skip to content

Commit

Permalink
EZP-18486 - PHP notice while running cronjobs/indexcontent.php cronjob
Browse files Browse the repository at this point in the history
  • Loading branch information
pedroresende committed May 18, 2015
1 parent 5908d5e commit af2b416
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 af2b416

Please sign in to comment.