1
0
Fork 0
- Fixed the main problem with the CC-Recipients (now the recipients are still there after reloading the page etc. incl. the right setting in mysqldumper.ini with dots instead of underscores)
- Add required validators to the E-Mail-Input-Fields
- Changed the misspelling Reciptient to Recipient in  E-Mail-jQuery and E-Mail-PHP-Functions
- Fixed the problem with the E-Mail programs (identically with the CC-Recipients. After reloading the page etc. the data was lost)
Dieser Commit ist enthalten in:
Harald-Innetzberger 2011-09-03 16:29:27 +00:00
Ursprung 9ab6601ee3
Commit 6072297b26
3 geänderte Dateien mit 150 neuen und 139 gelöschten Zeilen

Datei anzeigen

@ -1,5 +1,5 @@
<?php
$addReciptientCcUrl = $this->url(
$addRecipientCcUrl = $this->url(
array(
'controller' => 'config',
'action' => 'add.Recipient.Cc',
@ -7,7 +7,7 @@ $addReciptientCcUrl = $this->url(
null,
true
);
$deleteReciptientCcUrl = $this->url(
$deleteRecipientCcUrl = $this->url(
array(
'controller' => 'config',
'action' => 'delete.Recipient.Cc',
@ -139,16 +139,16 @@ $deleteFtpConnectionUrl = $this->url(
});
}
function addEmailReciptientCc()
function addEmailRecipientCc()
{
$('#config_form').attr('action','<?php echo $addReciptientCcUrl; ?>');
$('#config_form').attr('action','<?php echo $addRecipientCcUrl; ?>');
$('#config_form').submit();
}
function deleteEmailReciptientCc(recipientId)
function deleteEmailRecipientCc(recipientId)
{
setParam(recipientId);
$('#config_form').attr('action','<?php echo $deleteReciptientCcUrl; ?>');
$('#config_form').attr('action','<?php echo $deleteRecipientCcUrl; ?>');
$('#config_form').submit();
}