1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-27 12:00:26 +02:00

Added some passthru support to login

Got edit profile half working..


git-svn-id: file:///svn/phpbb/trunk@223 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
James Atkinson
2001-05-01 20:27:36 +00:00
parent b5743048e7
commit ccbd1cdfdd
6 changed files with 108 additions and 19 deletions

View File

@@ -225,7 +225,7 @@ function init_userprefs($userdata)
global $theme;
if(!$override_user_themes)
{
if($userdata['user_id'] != ANONYMOUS || $userdata['user_id'] != DELETED)
if(($userdata['user_id'] != ANONYMOUS || $userdata['user_id'] != DELETED) && $userdata['user_theme'])
{
$theme = setuptheme($userdata['user_theme']);
}