04-11-2011, 05:41 AM
[eluser]JayKae[/eluser]
The actual issue is that show_error in CI_Exception signature is:
and in Common the signature is:
The signatures are off but show_error in common calls the show_error in exception, so I have no way of access the actual CI_Exception arguments
The actual issue is that show_error in CI_Exception signature is:
Code:
show_error($heading, $message, $template = 'error_general', $status_code = 500)
Code:
show_error($message, $status_code = 500, $heading = 'An Error Was Encountered')
The signatures are off but show_error in common calls the show_error in exception, so I have no way of access the actual CI_Exception arguments