TAV1702 Posted March 20, 2011 Report Share Posted March 20, 2011 When a module is requested and it does not exist, it puts up a error page. I edited one page but it did nothing. Maybe it was the wrong one. Can anyone tell me what tpl file that is? I tried core_error.tpl but that did not do anything. Quote Link to comment Share on other sites More sharing options...
Tom Posted March 20, 2011 Report Share Posted March 20, 2011 It's in core/classes/Debug.class.php, line 127 or so. I'm using public static function showCritical($message, $title='') { if($title == '') $title = 'An error was encountered'; Template::set('message', $message); Template::set('title', $title); Template::Show('core_error.tpl'); } 1 Quote Link to comment Share on other sites More sharing options...
TAV1702 Posted March 20, 2011 Author Report Share Posted March 20, 2011 Thanks Tom. Well, it calls the tpl file I edited and it did not make a difference. That is kind of odd. I am glad to know I was on the right track though. Thanks I appreciate it. +1 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.