vendor/smarty/smarty/src/Debug.php:107
Undefined array key "compile_time"
vendor/smarty/smarty/src/Debug.php:130
Undefined array key "render_time"
The fix is to predefine the keys in $template_data array, e.g.
if(!array_key_exists('render_time', $this->template_data[ $this->index ][ $key ])) {
$this->template_data[ $this->index ][ $key ][ 'render_time' ] = 0;
}
Smarty v5.5.2 triggers the following warnings:
The fix is to predefine the keys in $template_data array, e.g.