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
Expected behavior, and steps to reproduce if appropriate
Use \CodeIgniter\View\Table()
Set a custom template, but omit tfoot_open or tfoot_close
Add something to the table using setFooting()
call generate()
suggested solution
the keys tfoot_open and tfoot_close have been missed from the array on line 501.
description
ErrorException "Undefined index: tfoot_open" is thrown when rendering a table with a footer.
CodeIgniter 4 version
4.1.0
Affected module(s)
File: System/View/Table.php
Function: _compileTemplate()
Line: 500
Expected behavior, and steps to reproduce if appropriate
Use \CodeIgniter\View\Table()
Set a custom template, but omit
tfoot_open
ortfoot_close
Add something to the table using setFooting()
call generate()
suggested solution
the keys
tfoot_open
andtfoot_close
have been missed from the array on line 501.Replace
with
The text was updated successfully, but these errors were encountered: