|
From: Jon O. <jon...@us...> - 2008-11-01 18:42:03
|
Update of /cvsroot/mxbb/core/includes/sessions/phpbb3 In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv24532 Modified Files: session.php Log Message: Cleanup Index: session.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/sessions/phpbb3/session.php,v retrieving revision 1.39 retrieving revision 1.40 diff -C2 -d -r1.39 -r1.40 *** session.php 31 Oct 2008 18:54:23 -0000 1.39 --- session.php 1 Nov 2008 18:41:58 -0000 1.40 *************** *** 1345,1350 **** else { ! $style = $this->style; if(!$board_config['override_user_style'] && ($this->data['user_id'] != ANONYMOUS)) { --- 1345,1351 ---- else { ! $style = $this->style; // From main style init. Should be correct and valid. + /* if(!$board_config['override_user_style'] && ($this->data['user_id'] != ANONYMOUS)) { *************** *** 1373,1380 **** } } // Set up style Temp code should be removed after bugtraking $style = ($style) ? $style : ((!$board_config['override_user_style'] && $this->data['user_id'] != ANONYMOUS) ? $this->data['user_style'] : $this->phpbb_style['style_id']); - } --- 1374,1381 ---- } } + */ // Set up style Temp code should be removed after bugtraking $style = ($style) ? $style : ((!$board_config['override_user_style'] && $this->data['user_id'] != ANONYMOUS) ? $this->data['user_style'] : $this->phpbb_style['style_id']); } |