mirror of
https://github.com/wilr/silverstripe-googlesitemaps.git
synced 2024-10-22 11:05:48 +02:00
Ensure trailing slash removed from AbsoluteLink
This is to resolve duplicated trailing slash when add_trailing_slash property is set to true in YML config. Also, relates to #188
This commit is contained in:
parent
f1bddb626d
commit
f064330acd
@ -133,6 +133,6 @@ class GoogleSitemapController extends Controller
|
||||
|
||||
public function AbsoluteLink($action = null)
|
||||
{
|
||||
return Controller::join_links(Director::absoluteBaseURL(), 'sitemap.xml', $action);
|
||||
return rtrim(Controller::join_links(Director::absoluteBaseURL(), 'sitemap.xml', $action), '/');
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user