mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
41aec54e88
Regression caused by a security fix in 9bf3ae9a190
20 lines
662 B
JavaScript
Executable File
20 lines
662 B
JavaScript
Executable File
Behaviour.register({
|
|
'input#Form_EditForm_createtranslation': {
|
|
onclick: function(e) {
|
|
var st = $('sitetree');
|
|
var originalID = st.getIdxOf(st.firstSelected());
|
|
if(originalID && originalID.substr(0,3) == 'new') {
|
|
alert("You have to save a page before translating it");
|
|
} else {
|
|
var url = baseHref() + 'admin/' + this.name.substring(7) + '?ID=' + $('Form_EditForm_ID').value + '&newlang=' +
|
|
$('Form_EditForm_NewTransLang').value + '&ajax=1';
|
|
url += "&locale=" + $('Form_EditForm_Locale').value;
|
|
url += "&SecurityID=" + $$('input[name=SecurityID]')[0].value;
|
|
|
|
new Ajax.Request(url);
|
|
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
}); |