aboutsummaryrefslogtreecommitdiffstats
path: root/mod/home.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-01-07 04:33:34 -0800
committerFriendika <info@friendika.com>2011-01-07 04:33:34 -0800
commit2a269e0c182eb90405644190abe6f40a9cdef615 (patch)
treefabdba7035bc025ceb8afbeccaadee31c768cda9 /mod/home.php
parentd1432fe7b5cd6c2877fe2c99303870f27f96224a (diff)
downloadvolse-hubzilla-2a269e0c182eb90405644190abe6f40a9cdef615.tar.gz
volse-hubzilla-2a269e0c182eb90405644190abe6f40a9cdef615.tar.bz2
volse-hubzilla-2a269e0c182eb90405644190abe6f40a9cdef615.zip
use default system theme for system pages
Diffstat (limited to 'mod/home.php')
-rw-r--r--mod/home.php9
1 files changed, 4 insertions, 5 deletions
diff --git a/mod/home.php b/mod/home.php
index 2d646f8dd..d45b13ed5 100644
--- a/mod/home.php
+++ b/mod/home.php
@@ -14,11 +14,10 @@ if(! function_exists('home_content')) {
function home_content(&$a) {
$o = '';
-/*
- * if(! (x($a->page,'footer')))
- * $a->page['footer'] = '';
- * $a->page['footer'] .= "<div class=\"powered\" >Powered by <a href=\"http://friendika.com\" title=\"friendika\" >friendika</a></div>";
- */
+
+ if(x($_SESSION,'theme'))
+ unset($_SESSION['theme']);
+
$o .= '<h1>' . ((x($a->config,'sitename')) ? t("Welcome to ").$a->config['sitename'] : "" ) . '</h1>';
if(file_exists('home.html'))
$o .= file_get_contents('home.html');