Still correct with 5.5?

Permalink
I'm working on 2 roughly the same versions of my site in the most recent 5.4 as well as one running 5.5 so see some of the differences before I upgrade and there seems to be one here. In my new site all the C5 editing navigation is gone when I implement a fairly simple theme. Could it be this code within the head?

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?php 
    Loader::element('header_required'); 
 ?>
<link href="<?=$this->getThemePath()?>/alameda.css" rel="stylesheet" type="text/css" />
</head>

AltaPlanning
 
andrew replied on at Permalink Reply
andrew
Make sure that there is this line:

<?php 
    Loader::element('footer_required'); 
 ?>


Right before the </body> tag.
AltaPlanning replied on at Permalink Reply
AltaPlanning
Doh! Rookie mistake. That's all it is. Thanks