mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
MINOR: #4674 applied patch for special chars in folder titles (from r97669)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@102524 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
fdce2dfc22
commit
caebfe6ea3
@ -357,7 +357,6 @@ class Folder extends File {
|
||||
* and implemeting updateCMSFields(FieldSet $fields) on that decorator.
|
||||
*/
|
||||
function getCMSFields() {
|
||||
$nameField = ($this->ID > 0) ? new TextField("Name") : new HiddenField("Name");
|
||||
$fileList = new AssetTableField(
|
||||
$this,
|
||||
"Files",
|
||||
@ -368,13 +367,13 @@ class Folder extends File {
|
||||
$fileList->setFolder($this);
|
||||
$fileList->setPopupCaption(_t('Folder.VIEWEDITASSET', "View/Edit Asset"));
|
||||
|
||||
$nameField = ($this->ID && $this->ID != "root") ? new TextField("Name", _t('Folder.TITLE')) : new HiddenField("Name");
|
||||
$titleField = ($this->ID && $this->ID != "root") ? new TextField("Title", _t('Folder.TITLE')) : new HiddenField("Title");
|
||||
|
||||
$fields = new FieldSet(
|
||||
new HiddenField("Title"),
|
||||
new HiddenField("Name"),
|
||||
new TabSet("Root",
|
||||
new Tab("Files", _t('Folder.FILESTAB', "Files"),
|
||||
$nameField,
|
||||
$titleField,
|
||||
$fileList,
|
||||
new HiddenField("DestFolderID")
|
||||
),
|
||||
|
Loading…
Reference in New Issue
Block a user