BUGFIX TreeSelectorField doubles up on concating base_url, doesn't include the security ID (#5164, thanks marcus)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@100755 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2010-03-10 00:46:17 +00:00 committed by Sam Minnee
parent 9e7611e891
commit 618d7e60a3

View File

@ -188,13 +188,12 @@ TreeDropdownField.prototype = {
},
ajaxGetTree: function(after) {
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 : '';
var ajaxURL = this.buildURL('tree?forceValues=' + this.inputTag.value);
var secId = jQuery('[@name=SecurityID]');
ajaxURL += secId.length ? '&SecurityID=' + secId.val() : '';
if($('Form_EditForm_Locale')) ajaxURL += "&locale=" + $('Form_EditForm_Locale').value;
if ( this.inputTag.value ) ajaxURL += '&forceValue=' + this.inputTag.value;
if (this.search() != null) ajaxURL += "&search=" + this.search();
if(this.inputTag.value) ajaxURL += '&forceValue=' + this.inputTag.value;
if(this.search() != null) ajaxURL += "&search=" + this.search();
new Ajax.Request(ajaxURL, {
method : 'get',
onSuccess : after,