]> git.mxchange.org Git - friendica.git/commitdiff
use default system theme for system pages
authorFriendika <info@friendika.com>
Fri, 7 Jan 2011 12:33:34 +0000 (04:33 -0800)
committerFriendika <info@friendika.com>
Fri, 7 Jan 2011 12:33:34 +0000 (04:33 -0800)
mod/directory.php
mod/home.php
mod/login.php
mod/register.php
mod/search.php

index b0cee76cb72330e59ae8e537dd24b72de0e2dcee..82f2b79b33f4db39ccbd02ec206dd3df588b6692 100644 (file)
@@ -14,6 +14,8 @@ function directory_post(&$a) {
 function directory_content(&$a) {
        $o = '';
        $o .= '<script> $(document).ready(function() { $(\'#nav-directory-link\').addClass(\'nav-selected\'); });</script>';
+       if(x($_SESSION,'theme'))
+               unset($_SESSION['theme']);
 
        if(x($a->data,'search'))
                $search = notags(trim($a->data['search']));
index 2d646f8dd8a4b09553a9fc365fff80f6e7b301aa..d45b13ed5fb4e21ca02bd8d7296bbabb0a879741 100644 (file)
@@ -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');
index 6ee625966d259fd6f4ce162e7c2062e572a0b2be..58af42d7445321f72e60c3164fbedb0671e1d7b6 100644 (file)
@@ -1,5 +1,8 @@
 <?php
 
 function login_content(&$a) {
+       if(x($_SESSION,'theme'))
+               unset($_SESSION['theme']);
        return login(($a->config['register_policy'] == REGISTER_CLOSED) ? false : true);
+
 }
\ No newline at end of file
index fcc9ebcab522fbf8585d2a838b9ee04c05060fd3..86bfe2066e9888e397fc583c98a1a1846a6470e8 100644 (file)
@@ -360,6 +360,10 @@ function register_content(&$a) {
                return;
        }
 
+       if(x($_SESSION,'theme'))
+               unset($_SESSION['theme']);
+
+
        $username     = ((x($_POST,'username'))     ? $_POST['username']     : ((x($_GET,'username'))     ? $_GET['username']              : ''));
        $email        = ((x($_POST,'email'))        ? $_POST['email']        : ((x($_GET,'email'))        ? $_GET['email']                 : ''));
        $openid_url   = ((x($_POST,'openid_url'))   ? $_POST['openid_url']   : ((x($_GET,'openid_url'))   ? $_GET['openid_url']            : ''));
index 7605e9ae264f646ec3066df5d37347e373984cd4..20113e75bcf5c014b1f78d9b1ecb2061e4160f2a 100644 (file)
@@ -9,6 +9,9 @@ function search_post(&$a) {
 
 function search_content(&$a) {
 
+       if(x($_SESSION,'theme'))
+               unset($_SESSION['theme']);
+
        $o = '<div id="live-search"></div>' . "\r\n";
 
        $o .= '<h3>' . t('Search') . '</h3>';