Closed (fixed)
Project:
Wilderness
Version:
6.x-1.0-beta1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
26 Nov 2009 at 06:21 UTC
Updated:
17 Jul 2012 at 05:11 UTC
I have my drupal site in a subfolder instead of at the document root. When I click the "RSS" button at the bottom of the page, i get sent to "/rss.xml" instead of "/subfolder/rss.xml"
Line 88 of wilderness/page.tpl.php:
<a href="<?php echo $base_url; ?>/rss.xml" class="rss-tag-icon" title="RSS"></a>
This is wrong. I believe it should be:
<a href="<?php echo $base_path; ?>rss.xml" class="rss-tag-icon" title="RSS"></a>
Seems to make it work for me.
Comments
Comment #1
pokadan commented<a href="<?php echo $base_path; ?>rss.xml" class="rss-tag-icon" title="RSS"></a>is probably best for both cases (drupal in webroot or subfolder)
Comment #2
pokadan commentedComment #3
pokadan commentedcommitted to dev