Rits_Application::
run()
/home/storage/3/b1/5f/juristas/public_html/juristas/index.php [25]
19 // engines
20 require_once 'rits/_engine/errorhandler.php';
21 require_once 'rits/_engine/autoload.php';
22
23 // run application
24 Rits_Application::getInstance()->run();
25 } catch (Exception $e) {
26 Rits_Exception_Handler::handle($e);
Visitor_ProfileController::
homeAction()
/home/storage/3/b1/5f/juristas/public_html/juristas/rits/_library/Zend/Controller/Action.php [513]
507 // preDispatch() didn't change the action, so we can continue
508 if ($this->getInvokeArg('useCaseSensitiveActions') || in_array($action, $this->_classMethods)) {
509 if ($this->getInvokeArg('useCaseSensitiveActions')) {
510 trigger_error('Using case sensitive actions without word separators is deprecated; please do not rely on this "feature"');
511 }
512 $this->$action();
513 } else {
514 $this->__call($action, array());
515 }
516 $this->postDispatch();
517 }