mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
BUGFIX Fixed URL generation in TreeSelectorField.js, was failing to detect relative URLs - prefixing with <base> URL as a workaround
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@98853 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
b700e2ccff
commit
060fa1e30d
@ -181,7 +181,9 @@ TreeDropdownField.prototype = {
|
||||
},
|
||||
|
||||
ajaxGetTree: function(after) {
|
||||
var ajaxURL = this.buildURL('tree?forceValues=' + this.inputTag.value);
|
||||
var baseTags = document.getElementsByTagName('base');
|
||||
var base = (baseTags) ? baseTags[0].href : '';
|
||||
var ajaxURL = base + this.buildURL('tree?forceValues=' + this.inputTag.value);
|
||||
ajaxURL += $('SecurityID') ? '&SecurityID=' + $('SecurityID').value : '';
|
||||
if($('Form_EditForm_Locale')) ajaxURL += "&locale=" + $('Form_EditForm_Locale').value;
|
||||
if ( this.inputTag.value ) ajaxURL += '&forceValue=' + this.inputTag.value;
|
||||
|
Loading…
Reference in New Issue
Block a user