Posted by zooki on December 13, 2008 at 6:21pm
Jump to:
| Project: | AD The Morning After |
| Version: | 6.x-1.5 |
| Component: | User interface |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed (fixed) |
Issue Summary
There seems to be problems with the link text,
for example the header bit, where it says
// Home » Administer » Site building
It displays like:
// HomeArticle title here
so, it seems the link isnt formed properly and renders use of the theme out of the question
Comments
#1
This slight code change seemed to do the trick in page.tpl
<div id="header-image"><?php
$breadcrumb2 = str_replace(' › ', ' // ', $breadcrumb);
$breadcrumb3 = str_replace('<div class="breadcrumb">', ' ', $breadcrumb2);
if ($is_front) {print '<div class="breadcrumb">// ' . t('Home') . '</div>';} else { echo '<div class="breadcrumb">// ' . str_replace('</div>', ' » ', $breadcrumb3) . $title . '</div>' ;} ?>
</div>
I added » which makes >>
#2
Closed, its easy just fix the php as noted above