Excel 2007 export

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
Chris
User
Posts: 162

Excel 2007 export

Post by Chris »

If there is no output buffer, Excel 2007 export fails due to clearing the buffer without checking.

Fix with :
if (!EW_DEBUG_ENABLED && ob_get_length())
ob_end_clean();


Post Reply