update 14 July 2016

This commit is contained in:
Kiefer Conrad
2016-07-14 20:58:12 +02:00
parent 3018dff1ff
commit 49b65729db
44 changed files with 199 additions and 199 deletions

View File

@ -10,10 +10,10 @@ class NewsletterTemplate extends Model {
parent::__construct();
$this->addValidations('name', array(
'required' => __('Please specify a name.')
'required' => __('Please specify a name')
));
$this->addValidations('body', array(
'required' => __('The template body cannot be empty.')
'required' => __('The template body cannot be empty')
));
}