I’ve switched to the newest Version of CakePHP, but when I was about to build up my layout, I got this error:
Fatal error: Call to a member function image() on a non-object in C:\xampp\htdocs\propfe\app\View\Layouts\default.ctp on line 91
of course I’ve already included the helper in lib/Cake/Controller/AppController.php:
public $helpers = array('Session','Html','Js');
and although it’s improbable, the error is in this line, here’s no 91 of the layout:
<?php echo $this->html->image('aesculap.jpg'); ?>
You have to use
$this->Htmlinstead of$this->html.