192. else if( $show404 = Config::get('Routing', 'show404') )
193. {
194. Helper::report('InvalidRequest', "Invalid request made to {$controller}/{$function} page!");
195.
196. Response::redirect($show404);
197. }
198. # Invalid operation function
199. else
200. {
201. throw new Exception(self::getLang('invalidOpenFunction'));
202. }
203. }
204.
205. /**
206. * Protected call controller
207. *
208. * [added]5.7.7
209. */
210. protected static function callController($page, $function, $parameters)
211. {