Help Needed About An Error

Status
Not open for further replies.

amerriaz

Banned
Banned
1,306
2011
639
0
i am getting this error

donWe.png


please tell me how to solve this
here is line number 1092

Code:
trigger_error("Smarty error: $error_msg", $error_type);
 
3 comments
// Turn off all error reporting
error_reporting(0);

or if file type is .tpl you can add this code to top of the smarty tpl file

{php}
error_reporting(0);
{/php}

:)
 
Status
Not open for further replies.
Back
Top