CodeIgniter
CodeIgniter copied to clipboard
Miswriting in html/error_exception.php
In a view you call, execute this code if (!preg_match(base_url(), '')) {}
It throws an ErrorException
In 3 places in the file there is html_entity_decode(esc($var), 'html')
instead of html_entity_decode(esc($var, 'html'))
Lines 297, 298, 338