diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-10-06 18:14:11 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-10-06 18:14:11 -0700 |
commit | 66a6fd8df07ea18de77c640a7ae08c2a3f630c85 (patch) | |
tree | 05aa1d7e0c4ecca21dfc80992f6df302f82b93af /mod/dfrn_notify.php | |
parent | c7c3db8c54ada33c785a7303de582a3d0c1a14ee (diff) | |
download | volse-hubzilla-66a6fd8df07ea18de77c640a7ae08c2a3f630c85.tar.gz volse-hubzilla-66a6fd8df07ea18de77c640a7ae08c2a3f630c85.tar.bz2 volse-hubzilla-66a6fd8df07ea18de77c640a7ae08c2a3f630c85.zip |
more instrumentation
Diffstat (limited to 'mod/dfrn_notify.php')
-rw-r--r-- | mod/dfrn_notify.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/dfrn_notify.php b/mod/dfrn_notify.php index d657b1f88..4a23da505 100644 --- a/mod/dfrn_notify.php +++ b/mod/dfrn_notify.php @@ -117,8 +117,8 @@ function dfrn_notify_post(&$a) { '$username' => $importer['username'], '$email' => $importer['email'], '$from' => $msg['from-name'], - '$title' => $msg['title'], - '$body' => strip_tags(bbcode($msg['body'])) + '$title' => stripslashes($msg['title']), + '$body' => strip_tags(bbcode(stripslashes($msg['body']))) )); $res = mail($importer['email'], t('New mail received at ') . $a->config['sitename'], |