Closed (fixed)
Project:
Touch
Version:
7.x-1.5
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
14 Jan 2012 at 17:35 UTC
Updated:
23 Jan 2012 at 23:25 UTC
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.
| Comment | File | Size | Author |
|---|---|---|---|
| touch.patch | 1.72 KB | zoltán balogh |
Comments
Comment #1
ravis commentedthank 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:
Comment #2
zoltán balogh commentedYou 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.
Comment #3
ravis commentedHi,
I think its fixed in version 7.x-1.7
Comment #4
zoltán balogh commentedThx.