I've installed Drupal 4.7.4 at http://test.eyecatchingscreens.com .
My frontpage and screensavers/new are generated by views - breadcrumbs at these pages are "Home >> ", but at my local server and Drupal 4.7.3 these breadcrumbs are empty. How to fix this bug?
I think breadcrumbs must be empty or just "Home"..

Thank you.

Comments

adcworks’s picture

does your page.tpl.php contain

<div class="breadcrumb"><?= $breadcrumb ?></div>

zub@drupal.org’s picture

yes my page.tpl.php contains

      <div id="breadcrumb">
       <?php
       if($breadcrumb)  print $breadcrumb;
       else print 'Welcome to EyeCatchingScreens.com'; ?>
      </div>