Chris
Chris
Smarty_Internal_Template::render(): Cannot use output buffering in output buffering display handlers
Not sure if this is a Smarty issue or some bad server configuration or something like that. While running my application with Smarty 4.5.2 on PHP 8.2, no errors or...
While upgrading to Smarty 5 I encountered this fatal error by calling this: `$this->smarty->setErrorUnassigned(true);` Not a big deal, the property is still there and I can set it directly like...
By adding some text like this: ``` DynamicReportBuilder dynamicReportBuilder = new DynamicReportBuilder(); dynamicReportBuilder.setPageSizeAndOrientation(Page.Page_A4_Portrait()) AutoText autoText = new AutoText("Header 1\\nHeader2\\n", AutoText.POSITION_HEADER, HorizontalBandAlignment.LEFT, 480); autoText.setStyle(...); dynamicReportBuilder.addAutoText(autoText); ``` Both lines are printed. This...