This commit is contained in:
madflow 2016-06-14 19:02:01 +02:00 committed by Adrien Loison
parent dc31d6e8c2
commit a43c13a36f

View File

@ -260,7 +260,9 @@ class GlobalFunctionsHelper
*/
public function ob_end_clean()
{
ob_end_clean();
if (ob_get_length() > 0) {
ob_end_clean();
}
}
/**