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

loliearn’s picture

Assigned: Unassigned » loliearn

you can see the demo site http://www.easypays4u.com

Kisugi Ai’s picture

Status: Active » Closed (fixed)

closed -- issue fixed for 2 weeks with no activity.