aboutsummaryrefslogtreecommitdiffstats
path: root/mod/item.php
diff options
context:
space:
mode:
authorfabrixxm <fabrix.xm@gmail.com>2011-03-13 13:50:44 +0100
committerfabrixxm <fabrix.xm@gmail.com>2011-03-13 13:50:44 +0100
commita7af6df962bad0901611d28450a990831fb25680 (patch)
treec957a0d41837a0801e200757c180a1651c19951e /mod/item.php
parenta00beafe7ffb859c2e9f267c81f7054ac6452cbf (diff)
downloadvolse-hubzilla-a7af6df962bad0901611d28450a990831fb25680.tar.gz
volse-hubzilla-a7af6df962bad0901611d28450a990831fb25680.tar.bz2
volse-hubzilla-a7af6df962bad0901611d28450a990831fb25680.zip
Fix spaces around t() and tt()
Diffstat (limited to 'mod/item.php')
-rw-r--r--mod/item.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/item.php b/mod/item.php
index 9e03e76cd..2cdfb0d66 100644
--- a/mod/item.php
+++ b/mod/item.php
@@ -419,7 +419,7 @@ function item_post(&$a) {
'$body' => strip_tags(bbcode($datarray['body']))
));
- $res = mail($user['email'], sprintf(t("%s commented on your item at %s"),$from,$a->config['sitename']),
+ $res = mail($user['email'], sprintf( t("%s commented on your item at %s") ,$from,$a->config['sitename']),
$email_tpl,"From: " . t("Administrator") . "@" . $a->get_hostname() );
}
}
@@ -442,7 +442,7 @@ function item_post(&$a) {
'$body' => strip_tags(bbcode($datarray['body']))
));
- $res = mail($user['email'], sprintf(t("%s posted on your profile wall at %s"),$from, $a->config['sitename']),
+ $res = mail($user['email'], sprintf( t("%s posted on your profile wall at %s") ,$from, $a->config['sitename']),
$email_tpl,"From: " . t("Administrator@") . "@" . $a->get_hostname() );
}
}