Active
Project:
FriendsForever
Version:
6.x-2.4
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
26 Jul 2008 at 14:39 UTC
Updated:
26 Jul 2008 at 14:39 UTC
The header/logo link in the top left of the theme is borken. A mouseover shows "<?=$base_path?>" rather than the base url (ie:www.drupal.org).
Fix is:
/path/to/themes/friendsforever/page.tpl.php
change:
<a href="<?=$base_path?>" title="<?php print t('Home') ?>">
to:
<a href="<?php print $base_path ?>" title="<?php print t('Home') ?>">