fixed some typos

This commit is contained in:
Stefan Becker 2009-09-29 07:54:11 +00:00
parent b1a9d0f546
commit 8b01210dd7
2 changed files with 4 additions and 4 deletions

View File

@ -26,10 +26,10 @@ class addressbook_contactform
* @param string $email=null comma-separated email addresses
* @param string $tpl_name=null custom etemplate to use
* @param string $subject=null subject for email
* @param string $copytoresiver=false send a copy of notification to resiver
* @param string $copytoreceiver=false send a copy of notification to receiver
* @return string html content
*/
function display($content=null,$addressbook=null,$fields=null,$msg=null,$email=null,$tpl_name=null,$subject=null,$copytoresiver=false)
function display($content=null,$addressbook=null,$fields=null,$msg=null,$email=null,$tpl_name=null,$subject=null,$copytoreceiver=false)
{
#error_log( "<p>addressbook_contactform::display(".print_r($content,true).",$addressbook,".print_r($fields,true).",$msg,$tpl_name)</p>\n");
if (empty($tpl_name) && !empty($content['tpl_form_name'])) $tpl_name =$content['tpl_form_name'];
@ -106,7 +106,7 @@ class addressbook_contactform
$preserv['is_contactform'] = true;
$preserv['email_contactform'] = $email;
$preserv['subject_contactform'] = $subject;
$preserv['email_copytoresiver'] = $copytoresiver;
$preserv['email_copytoreceiver'] = $copytoreceiver;
#if (!$fields) $fields = array('org_name','n_fn','email','tel_work','url','note','captcha');
$custom = 1;
foreach($fields as $name)

View File

@ -93,7 +93,7 @@ class addressbook_tracking extends bo_tracking
if ($data['is_contactform'])
{
$copy = preg_split('/, ?/',$data['email_contactform']);
if ($data['email_copytoresiver']) $copy[] = $data['email'];
if ($data['email_copytoreceiver']) $copy[] = $data['email'];
return $copy;
}
break;