- FICHEIRO: /home/santacristina/application/Catalogo/Controller.php
- LINHA: 333
- MENSAGEM: Undefined index: nome_text_1
- 329.
- 330. for ($f = 0; $f <= (count($features) / 2) - 1; $f++) {
- 331.
- 332. $features_array[] = array(
- 333. 'nome' => $features['nome_text_' . $f],
- 334. 'valor' => $features['valor_text_' . $f]
- 335. );
- 336.
- 337. }
- 338.
- FICHEIRO: /home/santacristina/application/Catalogo/Controller.php
- LINHA: 333
- 329.
- 330. for ($f = 0; $f <= (count($features) / 2) - 1; $f++) {
- 331.
- 332. $features_array[] = array(
- 333. 'nome' => $features['nome_text_' . $f],
- 334. 'valor' => $features['valor_text_' . $f]
- 335. );
- 336.
- 337. }
- 338.
- FICHEIRO: /home/santacristina/application/Catalogo/Controller.php
- LINHA: 77
- 73.
- 74. if ($pathInfo && ($this->_produtoModel->findBy('url', $pathInfo) || $this->_produtoModel->findBy('url', substr($pathInfo, 1)))) {
- 75.
- 76. $this->_setParam('id', $this->_produtoModel->id);
- 77. return $this->produtoAction();
- 78.
- 79. }
- 80.
- 81. }
- 82.
- FICHEIRO: /home/santacristina/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/santacristina/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/santacristina/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/santacristina/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/santacristina/public_html/index.php
- LINHA: 55
- 51. $application->initPainel();
- 52. $lang = isset($_GET['lang']) ? $_GET['lang'] : null;
- 53. $application->initLanguage($lang, true, false);
- 54. $application->initLanguageAdmin($lang, true, true);
- 55. $application->runApp();
- 56.
- 57.
- 58. /**
- 59. * Efectua a traducao de uma string.
- 60. */