Fixing missing template error

The StringTagField tries to use a StringTagField.ss template, which doesn't existing. I have changed this to use the TagField.ss template instead.
This commit is contained in:
3Dgoo 2015-08-21 10:40:22 +09:30
parent d54873fbaf
commit 97d27a60c0

View File

@ -130,7 +130,7 @@ class StringTagField extends DropdownField {
return $this
->customise($properties)
->renderWith(array("templates/StringTagField"));
->renderWith(array("templates/TagField"));
}
/**