In the templates/page.tpl.php, the image paths (twitter, facebook, rss) contains double backslashes. And if the language prefix is not empty, then the link of the RSS feed is wrong. The patch is attached.

CommentFileSizeAuthor
touch.patch1.72 KBzoltán balogh

Comments

ravis’s picture

Assigned: Unassigned » ravis
Status: Needs review » Closed (fixed)

thank you very much for reporting the bug and providing the patch.
I have fixed it on my local system. I will soon apply the patch in the download file.

Regards:

zoltán balogh’s picture

Status: Closed (fixed) » Needs work

You forgot the language prefix in the 7.x-1.6 release:

+<li><a href="<?php print $front_page . ($language->prefix ? '/' : ''); ?>rss.xml"><img src="<?php global $base_url; echo $base_url.'/'.$directory; ?>/images/rss.png" alt="RSS"/></a></li>

Without this, the RSS icon links to http://example.com/enrss.xml, if the current language is English, but have a language prefix.

ravis’s picture

Hi,
I think its fixed in version 7.x-1.7

zoltán balogh’s picture

Status: Needs work » Closed (fixed)

Thx.