• FICHEIRO: /home/spzn/application/Catalogo/Controller.php
  • LINHA:    400
  • MENSAGEM: Undefined variable: category
  •  396.         
  •  397.         $this->view->breadcrumb = '<a href="/pt/cms/view/id/1" class="link first">Início</a><span class="arrow"> > </span> <a href="/pt/go/formacoes" class="link ">Formações</a> ';
  •  398.       
  •  399.         $this->view->titulo_principal = "Formações";
  •  400.         $this->view->breadcrumb.= '<span class="arrow"> > </span><a href="#">'. $category->titulo .'</a>';
  •  401.         
  •  402.         if(isset($category) && $category_id != 2)
  •  403.           {
  •  404.               
  •  405.               $this->view->titulo_principal.= ' - ' . $category->titulo;

  • FICHEIRO: /home/spzn/application/Catalogo/Controller.php
  • LINHA:    400
  •  396.         
  •  397.         $this->view->breadcrumb = '<a href="/pt/cms/view/id/1" class="link first">Início</a><span class="arrow"> > </span> <a href="/pt/go/formacoes" class="link ">Formações</a> ';
  •  398.       
  •  399.         $this->view->titulo_principal = "Formações";
  •  400.         $this->view->breadcrumb.= '<span class="arrow"> > </span><a href="#">'. $category->titulo .'</a>';
  •  401.         
  •  402.         if(isset($category) && $category_id != 2)
  •  403.           {
  •  404.               
  •  405.               $this->view->titulo_principal.= ' - ' . $category->titulo;

  • FICHEIRO: /home/spzn/library/Goweb/Controller/Action.php
  • LINHA:    276
  •  272.                  */
  •  273.                 /*if ($this->getInvokeArg('useCaseSensitiveActions')) {
  •  274.                     trigger_error('Using case sensitive actions without word separators is deprecated; please do not rely on this "feature"');
  •  275.                 }*/
  •  276.                 $this->$action();
  •  277.             } else {
  •  278.                 $this->__call($action, array());
  •  279.             }
  •  280.             $this->postDispatch();
  •  281.         }

  • FICHEIRO: /home/spzn/library/Zend/Controller/Dispatcher/Standard.php
  • LINHA:    308
  •  304.             ob_start();
  •  305.         }
  •  306.
  •  307.         try {
  •  308.             $controller->dispatch($action);
  •  309.         } catch (Exception $e) {
  •  310.             // Clean output buffer on error
  •  311.             $curObLevel = ob_get_level();
  •  312.             if ($curObLevel > $obLevel) {
  •  313.                 do {

  • FICHEIRO: /home/spzn/library/Zend/Controller/Front.php
  • LINHA:    954
  •  950.                 /**
  •  951.                  * Dispatch request
  •  952.                  */
  •  953.                 try {
  •  954.                     $dispatcher->dispatch($this->_request, $this->_response);
  •  955.                 } catch (Exception $e) {
  •  956.                     if ($this->throwExceptions()) {
  •  957.                         throw $e;
  •  958.                     }
  •  959.                     $this->_response->setException($e);

  • FICHEIRO: /home/spzn/library/Goweb/Application.php
  • LINHA:    449
  •  445.     }
  •  446.
  •  447.     public function runApp(){
  •  448.         $frontController = Zend_Controller_Front::getInstance();
  •  449.         $frontController->dispatch();
  •  450.     }
  •  451. }

  • FICHEIRO: /home/spzn/public_html/index.php
  • LINHA:    54
  •  50. $application->initPainel();
  •  51. $lang = isset($_GET['lang']) ? $_GET['lang'] : null;
  •  52. $application->initLanguage($lang, true, false);
  •  53. $application->initLanguageAdmin($lang, true, true);
  •  54. $application->runApp();
  •  55.
  •  56.
  •  57. /**
  •  58.  * Efectua a traducao de uma string.
  •  59.  */