ImAmirhv
Results
2
comments of
ImAmirhv
> New improved solution for an admin section. > > I added two pages, one admin.tpl.html and admin-index.php. > > This page can only be viewed by the admin. >...
I found a solution change line 55: `return str_replace('{{', "{\f{", isset($value[$current_index])?$value[$current_index]:'');` to this: `return is_array($value[$current_index]) ? $value[$current_index] : str_replace('{{', "{\f{", isset($value[$current_index])?$value[$current_index]:'');` You get some new warning, but the admin panel...