When not template are selected for mail, PWG uses default template..

Sent multi-part message in MIME format. (With only one part for the moment).

Improvement pwg_mail function.

git-svn-id: http://piwigo.org/svn/trunk@1809 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
rub
2007-02-12 23:21:23 +00:00
parent 62c1993adc
commit 9ceec74971
8 changed files with 178 additions and 77 deletions
+2 -4
View File
@@ -223,10 +223,8 @@ if ( $page['show_comments'] and isset( $_POST['content'] ) )
'Validate: '.get_absolute_root_url()
.'comments.php?validate='.$comm['id'];
}
pwg_mail( get_webmaster_mail_address(), '',
'PWG comment by '.$comm['author'],
$content
);
pwg_mail(get_webmaster_mail_address(),
array('subject' => 'PWG comment by '.$comm['author'], 'content' => $content));
}
}
else