TAV1702 Posted March 20, 2011 Report 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
Tom Posted March 20, 2011 Report 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
TAV1702 Posted March 20, 2011 Author Report 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
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.