[TYPO3-german] Extbase - Cannot access empty property...
JCL - Johannes C. Laxander
jc at laxander.com
Sun May 11 17:57:51 CEST 2014
Problem gelost :-)
>
> Fatal error: Cannot access empty property in
> /.../sc_cruise_plan/Classes/Controller/CruiseController.php on line 69
>
> Der Fehler betrifft im Controller diese Zeile:
>
> $this->view->assign('cruises',
> $this->$cruiseRepository->findCruises());
>
So ist's richtig:
$this->view->assign('cruises', $this->cruiseRepository->findCruises());
cruiseReopsitory wird OHNE $ angegeben, weil mit $this der Variablenraum
schon angegeben ist.
Johannes.
More information about the TYPO3-german
mailing list