diff options
author | fabrixxm <fabrix.xm@gmail.com> | 2011-03-13 13:50:44 +0100 |
---|---|---|
committer | fabrixxm <fabrix.xm@gmail.com> | 2011-03-13 13:50:44 +0100 |
commit | a7af6df962bad0901611d28450a990831fb25680 (patch) | |
tree | c957a0d41837a0801e200757c180a1651c19951e /mod/dfrn_notify.php | |
parent | a00beafe7ffb859c2e9f267c81f7054ac6452cbf (diff) | |
download | volse-hubzilla-a7af6df962bad0901611d28450a990831fb25680.tar.gz volse-hubzilla-a7af6df962bad0901611d28450a990831fb25680.tar.bz2 volse-hubzilla-a7af6df962bad0901611d28450a990831fb25680.zip |
Fix spaces around t() and tt()
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 f288e9beb..3a75123a5 100644 --- a/mod/dfrn_notify.php +++ b/mod/dfrn_notify.php @@ -471,8 +471,8 @@ function dfrn_notify_post(&$a) { '$body' => html_entity_decode(strip_tags(bbcode(stripslashes($datarray['body']))), ENT_QUOTES, 'UTF-8') )); - $res = mail($importer['email'], sprintf(t("%s commented on an item at %s"), $from ,$a->config['sitename']), - $email_tpl,t("From: Administrator@") . $a->get_hostname() ); + $res = mail($importer['email'], sprintf( t("%s commented on an item at %s") , $from ,$a->config['sitename']), + $email_tpl, t("From: Administrator@") . $a->get_hostname() ); break; } } |