aboutsummaryrefslogtreecommitdiffstats
path: root/mod/home.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/home.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/home.php')
-rw-r--r--mod/home.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/home.php b/mod/home.php
index 4fca1cbc2..225bd294d 100644
--- a/mod/home.php
+++ b/mod/home.php
@@ -20,7 +20,7 @@ function home_content(&$a) {
if(x($_SESSION,'theme'))
unset($_SESSION['theme']);
- $o .= '<h1>' . ((x($a->config,'sitename')) ? sprintf(t("Welcome to %s"),$a->config['sitename']) : "" ) . '</h1>';
+ $o .= '<h1>' . ((x($a->config,'sitename')) ? sprintf( t("Welcome to %s") ,$a->config['sitename']) : "" ) . '</h1>';
if(file_exists('home.html'))
$o .= file_get_contents('home.html');