Removing underscore from text

This commit is contained in:
Sean Harvey 2013-04-30 15:08:47 +12:00
parent 8a280b1865
commit 397f74a561
1 changed files with 1 additions and 1 deletions

View File

@ -188,7 +188,7 @@ class Subsite extends DataObject implements PermissionProvider {
if($this->ID!=0) {
$domainTable = new GridField("Domains", "Domains", $this->Domains(), GridFieldConfig_RecordEditor::create(10));
}else {
$domainTable = new LiteralField('Domains', '<p>'._t('Subsite.DOMAINSAVEFIRST', '_You can only add domains after saving for the first time').'</p>');
$domainTable = new LiteralField('Domains', '<p>'._t('Subsite.DOMAINSAVEFIRST', 'You can only add domains after saving for the first time').'</p>');
}
$languageSelector = new DropdownField('Language', 'Language', i18n::get_common_locales());