aboutsummaryrefslogtreecommitdiffstats
path: root/include/security.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-08-15 22:42:36 -0700
committerfriendica <info@friendica.com>2013-08-15 22:42:36 -0700
commitfc0a9c78a9c6761a37460d93aed033786402731e (patch)
tree8d19b1c0274a986a9974104a4937189e6891bb17 /include/security.php
parent1c1449cd821a927bbcbeb7f83c5d1c40a466f520 (diff)
parentb3070cf496e3630a45e9f2ec7679ff277348f1ec (diff)
downloadvolse-hubzilla-fc0a9c78a9c6761a37460d93aed033786402731e.tar.gz
volse-hubzilla-fc0a9c78a9c6761a37460d93aed033786402731e.tar.bz2
volse-hubzilla-fc0a9c78a9c6761a37460d93aed033786402731e.zip
Merge https://github.com/friendica/red into zpull
Diffstat (limited to 'include/security.php')
-rw-r--r--include/security.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/security.php b/include/security.php
index ef4d5a313..115539ae2 100644
--- a/include/security.php
+++ b/include/security.php
@@ -34,6 +34,7 @@ function authenticate_success($user_record, $login_initial = false, $interactive
else {
$_SESSION['uid'] = $user_record['uid'];
$_SESSION['theme'] = $user_record['theme'];
+ $_SESSION['mobile-theme'] = get_pconfig($user_record['uid'], 'system', 'mobile_theme');
$_SESSION['authenticated'] = 1;
$_SESSION['page_flags'] = $user_record['page-flags'];
$_SESSION['my_url'] = $a->get_baseurl() . '/channel/' . $user_record['nickname'];
@@ -148,6 +149,7 @@ function change_channel($change_channel) {
$_SESSION['uid'] = intval($r[0]['channel_id']);
get_app()->set_channel($r[0]);
$_SESSION['theme'] = $r[0]['channel_theme'];
+ $_SESSION['mobile-theme'] = get_pconfig(local_user(),'system', 'mobile_theme');
date_default_timezone_set($r[0]['channel_timezone']);
$ret = $r[0];
}