email confirmation bug reports
-
This is very useful and good plugin, but the usersubmission.php file contains few bugs.
1) Characters other then Latin 1 are visible as strange spiders.
2) Email confirmation does not contain subject.I made some workarounds in my webpage:
1) replaced
$headers .= “Content-type: text/html; charset=iso-8859-1\r\n”;
by:
$headers .= “Content-type: text/html; charset=utf-8\r\n”;2) added one more
if ( ! isset( $emailtitle ) || $emailtitle == ” ) { $emailtitle = ‘WordPress Link Library plugin message’; }
just before:
wp_mail( $adminmail, $emailtitle, $emailmessage, $headers );They work, but perhaps they are incorrect. Especially 2nd, because there is something wrong in a preceeding code and that should be fixed somehow.
The topic ‘email confirmation bug reports’ is closed to new replies.