upps, forgot to commit templates for customfields manager

This commit is contained in:
Cornelius Weiß
2005-11-01 18:59:15 +00:00
parent e4ed1ac5b0
commit 76692a6e28
3 changed files with 108 additions and 4 deletions

View File

@@ -165,7 +165,7 @@
$smtpClass = $this->SMTPServerType[$profileData['smtpType']]['classname'];
return empty($smtpClass) ? False : ExecMethod("emailadmin.$smtpClass.getAccountEmailAddress",$_accountName,3,$profileData);
return empty($smtpClass) ? False : ExecMethod("emailadmin.$smtpClass.getAccountEmailAddress",$_accountName);
}
function getFieldNames($_serverTypeID, $_class)
@@ -213,7 +213,7 @@
{
if (!empty($this->imapClass))
{
return ExecMethod("emailadmin.".$this->imapClass.".getMailboxString",$_folderName,3,$this->profileData);
return ExecMethod("emailadmin.".$this->imapClass.".getMailboxString",$_folderName);
}
else
{
@@ -387,12 +387,12 @@
{
if (!empty($this->imapClass))
{
ExecMethod("emailadmin.".$this->imapClass.".updateAccount",$_hookValues,3,$this->profileData);
ExecMethod("emailadmin.".$this->imapClass.".updateAccount",$_hookValues);
}
if (!empty($this->smtpClass))
{
ExecMethod("emailadmin.".$this->smtpClass.".updateAccount",$_hookValues,3,$this->profileData);
ExecMethod("emailadmin.".$this->smtpClass.".updateAccount",$_hookValues);
}
}