CI4 bugfixes

- Added session variable instantiation where needed.
- Added tabular helper to autoload
- removed tabular helper reference where no longer needed.
- Remove esc() references where it was causing display problems.
- Remove excess whitespace on blank line
- Remove unecessary using reference
- Make parameters for dinner table functions nullable
This commit is contained in:
objecttothis
2023-03-01 01:41:43 +04:00
committed by jekkos
parent 145930ce5b
commit 8d80f5a261
14 changed files with 45 additions and 50 deletions

View File

@@ -8,9 +8,9 @@ require_once('Secure_Controller.php');
/**
* Attributes controls the custom attributes assigned to items
*
*
* @property attribute attribute
*
*
*/
class Attributes extends Secure_Controller
{
@@ -23,7 +23,6 @@ class Attributes extends Secure_Controller
public function getIndex(): void
{
helper('tabular');
$data['table_headers'] = get_attribute_definition_manage_table_headers();
echo view('attributes/manage', $data);