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
Hi,
Currently the debug function ({debug}) is broken, because the COMPILECHECK_ON and CACHING_OFF constants from the Smarty class are called using the wrong namespace (The backslash should be dropped). The path to debug.tpl is also wrong (the "../" needs to be removed). This is the fixed version of display_debug():
Hi,
Currently the debug function (
{debug}
) is broken, because theCOMPILECHECK_ON
andCACHING_OFF
constants from theSmarty
class are called using the wrong namespace (The backslash should be dropped). The path todebug.tp
l is also wrong (the "../
" needs to be removed). This is the fixed version ofdisplay_debug()
:The FQN is also wrong in the debug.tpl, but there it's the other way around.
{Smarty::SMARTY_VERSION}
should be{Smarty\Smarty::SMARTY_VERSION}
.The text was updated successfully, but these errors were encountered: