Closed (fixed)
Project:
Tapestry
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
16 Jun 2010 at 05:45 UTC
Updated:
24 Oct 2011 at 00:14 UTC
click title link will goto the defualt language first page when you see other language pages.
i tried to modify the below code in the page.tpl.php file on themes/tapestry/ directory. The bug may be fixed.
//original code
<?php if ($logo) { ?>
<div class="site-logo">
<a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" /></a>
</div>
<?php } ?>
<?php print $search_box; ?>
<?php if ($site_name) { ?>
<h1 class='site-name'><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1>
<?php } ?>
//modified code
<?php if ($logo) { ?>
<div class="site-logo">
<a href="<?php print check_url($front_page) ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" /></a>
</div>
<?php } ?>
<?php print $search_box; ?>
<?php if ($site_name) { ?>
<h1 class='site-name'><a href="<?php print check_url($front_page) ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1>
<?php } ?>
Comments
Comment #1
loliearn commentedyou can see the demo site http://www.easypays4u.com
Comment #2
kisugiai commentedclosed -- issue fixed for 2 weeks with no activity.