- FICHEIRO: E:\bctl\application\Portfolio\Controller.php
- LINHA: 177
- MENSAGEM: Undefined offset: 8
- 173. $data_para_insert = array(
- 174. 'categoria_id' => $id,
- 175. 'data' => date("Y-m-d"),
- 176. 'titulo' => date("Y-m-d"),
- 177. 'value' => $row[8],
- 178. 'value2' => number_format($row[5], 4),
- 179. 'value3' => number_format($row[0], 4),
- 180. 'value4' => $row[3],
- 181. 'value5' => $row[2],
- 182. 'value6' => $row[9],
- FICHEIRO: E:\bctl\application\Portfolio\Controller.php
- LINHA: 177
- 173. $data_para_insert = array(
- 174. 'categoria_id' => $id,
- 175. 'data' => date("Y-m-d"),
- 176. 'titulo' => date("Y-m-d"),
- 177. 'value' => $row[8],
- 178. 'value2' => number_format($row[5], 4),
- 179. 'value3' => number_format($row[0], 4),
- 180. 'value4' => $row[3],
- 181. 'value5' => $row[2],
- 182. 'value6' => $row[9],
- FICHEIRO: E:\bctl\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: E:\bctl\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: E:\bctl\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: E:\bctl\library\Goweb\Application.php
- LINHA: 449
- 445. }
- 446.
- 447. public function runApp(){
- 448. $frontController = Zend_Controller_Front::getInstance();
- 449. $frontController->dispatch();
- 450. }
- 451. }
- FICHEIRO: E:\bctl\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. */