Merge branch 'master' into feature/num_format

This commit is contained in:
Rushleader 2016-06-16 09:14:30 +02:00 committed by GitHub
commit 73df02f8c0

View File

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