Auto-Nav Problem

Permalink
When selecting the home page in my theme i get this..

Not Found

The requested URL /concrete5.6.0.2/href= was not found on this server.

i am basically refreshing my already loaded homepage when this occurs.

Some help please :)

Kind Regards,

Shane

ShaneSheppard
 
ShaneSheppard replied on at Permalink Reply
ShaneSheppard
Here is my custom auto-nav template
<?php
   defined('C5_EXECUTE') or die("Access Denied.");
   $aBlocks = $controller->generateNav();
   $c = Page::getCurrentPage();
   $nh = Loader::helper('navigation');
   echo("<ul class="nav pull-right">");
   $isFirst = true;
   foreach($aBlocks as $ni) {
      $_c = $ni->getCollectionObject();
      if (!$_c->getCollectionAttributeValue('exclude_nav')) {
         $target = $ni->getTarget();
         if ($target != '') {
            $target = 'target="' . $target . '"';
         }
         if ($ni->isActive($c) || strpos($c->getCollectionPath(), $_c->getCollectionPath()) === 0) {
ShaneSheppard replied on at Permalink Reply
ShaneSheppard
this is what appears in the source code of my home page

<a "="" concrete5.6.0.2="" href=" href=">Home</a>


As you can see my home page is not selected can anyone help?