bugfix customer_email formfield integration

This commit is contained in:
Michael Kaufmann (d00p)
2011-02-12 17:17:13 +01:00
parent 13904cfd7b
commit f3d505170a
2 changed files with 12 additions and 12 deletions

View File

@@ -282,13 +282,13 @@ elseif($page == 'emails')
} }
$iscatchall = makeyesno('iscatchall', '1', '0', '0'); $iscatchall = makeyesno('iscatchall', '1', '0', '0');
$email_add_form = include_once dirname(__FILE__).'/lib/formfields/customer/email/formfield.emails_edit.php';
$email_add_form = htmlform::genHTMLForm($email_add_form);
$title = $email_add_form['emails_edit']['title']; $email_add_data = include_once dirname(__FILE__).'/lib/formfields/customer/email/formfield.emails_add.php';
$image = $email_add_form['emails_edit']['image']; $email_add_form = htmlform::genHTMLForm($email_add_data);
$title = $email_add_data['emails_add']['title'];
$image = $email_add_data['emails_add']['image'];
eval("echo \"" . getTemplate("email/emails_add") . "\";"); eval("echo \"" . getTemplate("email/emails_add") . "\";");
} }
} }
@@ -328,12 +328,12 @@ elseif($page == 'emails')
$destinations_count = count($result['destination']); $destinations_count = count($result['destination']);
$result = htmlentities_array($result); $result = htmlentities_array($result);
$email_edit_form = include_once dirname(__FILE__).'/lib/formfields/customer/email/formfield.emails_edit.php';
$email_edit_form = htmlform::genHTMLForm($email_edit_form);
$title = $email_edit_form['emails_edit']['title']; $email_edit_data = include_once dirname(__FILE__).'/lib/formfields/customer/email/formfield.emails_edit.php';
$image = $email_edit_form['emails_edit']['image']; $email_edit_form = htmlform::genHTMLForm($email_edit_data);
$title = $email_edit_data['emails_edit']['title'];
$image = $email_edit_data['emails_edit']['image'];
eval("echo \"" . getTemplate("email/emails_edit") . "\";"); eval("echo \"" . getTemplate("email/emails_edit") . "\";");
} }

View File

@@ -56,7 +56,7 @@ return array (
array ( array (
'url' => 'customer_email.php?page=emails&action=add', 'url' => 'customer_email.php?page=emails&action=add',
'label' => $lng['emails']['emails_add'], 'label' => $lng['emails']['emails_add'],
'required_resources' => 'emails', 'required_resources' => 'emails'
), ),
array ( array (
'url' => 'customer_autoresponder.php', 'url' => 'customer_autoresponder.php',