• FICHEIRO: /home/fne/application/Agenda/Controller.php
  • LINHA:    84
  • MENSAGEM: Undefined index: start
  •  80.         
  •  81.         //$range_start = parseDateTime($_GET['start']);
  •  82.         //$range_end = parseDateTime($_GET['end']);
  •  83.         
  •  84.         $range_start = $_GET['start'];
  •  85.         $range_end = $_GET['end'];
  •  86.         
  •  87.         // Parse the timezone parameter if it is present.
  •  88.         $timezone = null;
  •  89.         if (isset($_GET['timezone'])) {

  • FICHEIRO: /home/fne/application/Agenda/Controller.php
  • LINHA:    84
  •  80.         
  •  81.         //$range_start = parseDateTime($_GET['start']);
  •  82.         //$range_end = parseDateTime($_GET['end']);
  •  83.         
  •  84.         $range_start = $_GET['start'];
  •  85.         $range_end = $_GET['end'];
  •  86.         
  •  87.         // Parse the timezone parameter if it is present.
  •  88.         $timezone = null;
  •  89.         if (isset($_GET['timezone'])) {

  • FICHEIRO: /home/fne/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/fne/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/fne/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/fne/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/fne/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.  */