get_label outputs as text Array
code in form_page_add:
$this->form_generation->add_input(array(
"type" => "text",
"name" => "title",
"label" => "Title",
"maxlength" => "100",
"id" => "title",
"validation" => "required"
));
code in add_view
<?= $this->form_generation->get_label("title"); ?>
The output shows this:
<label>Array</label>
I’m using the current release of CodeIgniter.
Any thoughts on why is the output is like this?
Thanks!
