You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because Smarty's debugging control could be 'URL', making a page request as follows:
admin.php?SMARTY_DEBUG
will give the debug console with the additional data (that I need - times required to compile, render, and cache the included templates and main template).
The text was updated successfully, but these errors were encountered:
Smarty does not show as much data when using
fetch()
as gets shown when usingdisplay()
.Note: Using
{debug}
in a template does produce the same debug data asfetch()
.In the controller files, find:
Add after:
This will capture
display()
into a buffer (display()
normally outputs directly), apply thepreg_replace()
, then die with the buffer contents.In
GUI->display()
, from:To:
Because Smarty's debugging control could be 'URL', making a page request as follows:
will give the debug console with the additional data (that I need - times required to compile, render, and cache the included templates and main template).
The text was updated successfully, but these errors were encountered: