1
0
mirror of https://github.com/silverstripe/silverstripe-framework synced 2024-10-22 14:05:37 +02:00

Merge pull request from patbolo/fix/7742_2

FIX 7742
This commit is contained in:
Sam Minnée 2012-08-16 18:05:10 -07:00
commit 9adf0a4155

View File

@ -264,7 +264,7 @@
onadd: function() {
this._super();
var title = this.data('title');
var title = decodeURIComponent(this.data('title'));
this.find('.treedropdownfield-title').replaceWith(
$('<input type="text" class="treedropdownfield-title search" />')
);