7.2
This commit is contained in:
parent
d980ffc1a5
commit
5a40e6fed1
|
@ -238,9 +238,9 @@ $helpArray = array (
|
|||
'287' => array ("Headline" => _('Licence'),
|
||||
"Text" => _('Please enter your licence key.')),
|
||||
'288' => array ("Headline" => _('Expiration warning'),
|
||||
"Text" => _('Please select how to be warned before your license expires.')),
|
||||
"Text" => _('Please select how to be warned before your licence expires.')),
|
||||
'289' => array ("Headline" => _('From address'),
|
||||
"Text" => _('This email address will be set as sender address of all mails.')),
|
||||
"Text" => _('This email address will be set as sender address of the mails.')),
|
||||
'290' => array ("Headline" => _('TO address'),
|
||||
"Text" => _('This email address will be set as TO address for the mails.')),
|
||||
// 300 - 399
|
||||
|
@ -388,7 +388,7 @@ $helpArray = array (
|
|||
// jobs
|
||||
'800' => array(
|
||||
"Headline" => _('From address'),
|
||||
"Text" => _('This email address will be set as sender address of all mails.')
|
||||
"Text" => _('This email address will be set as sender address of the mails.')
|
||||
),
|
||||
'801' => array(
|
||||
"Headline" => _('Reply-to address'),
|
||||
|
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
|
@ -111,11 +111,11 @@ if (isset($_POST['submitFormData'])) {
|
|||
$cfg->licenseEmailTo = $_POST['licenseEmailTo'];
|
||||
if ((($cfg->licenseWarningType === LAMCfgMain::LICENSE_WARNING_EMAIL) || ($cfg->licenseWarningType === LAMCfgMain::LICENSE_WARNING_ALL))
|
||||
&& !get_preg($cfg->licenseEmailFrom, 'email')) {
|
||||
$errors[] = _('License') . ': ' . _('From address') . ' - ' . _('Please enter a valid email address!');
|
||||
$errors[] = _('Licence') . ': ' . _('From address') . ' - ' . _('Please enter a valid email address!');
|
||||
}
|
||||
if ((($cfg->licenseWarningType === LAMCfgMain::LICENSE_WARNING_EMAIL) || ($cfg->licenseWarningType === LAMCfgMain::LICENSE_WARNING_ALL))
|
||||
&& !get_preg($cfg->licenseEmailTo, 'email')) {
|
||||
$errors[] = _('License') . ': ' . _('TO address') . ' - ' . _('Please enter a valid email address!');
|
||||
$errors[] = _('Licence') . ': ' . _('TO address') . ' - ' . _('Please enter a valid email address!');
|
||||
}
|
||||
}
|
||||
// set session timeout
|
||||
|
|
Loading…
Reference in New Issue