Rits_Application::
run()
/home/administ/new.administradores.com.br/public_html/index.php [24]
18 // engines
19 require_once 'rits/_engine/errorhandler.php';
20 require_once 'rits/_engine/autoload.php';
21
22 // run application
23 Rits_Application::getInstance()->run();
24 } catch (Exception $e) {
25 Rits_Exception_Handler::handle($e);
Visitor_ProfileController::
homeAction()
/home/administ/new.administradores.com.br/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 }