|
From: Jon O. <jon...@us...> - 2008-07-15 22:02:50
|
Update of /cvsroot/mxbb/core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv21915 Modified Files: common.php login.php Log Message: More...of the same Index: login.php =================================================================== RCS file: /cvsroot/mxbb/core/login.php,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** login.php 3 Jul 2008 17:51:45 -0000 1.30 --- login.php 15 Jul 2008 22:02:44 -0000 1.31 *************** *** 37,40 **** --- 37,46 ---- $mx_page->init( $page_id ); + // + // Initiate user style (template + theme) management + // - populate $theme, $images and initiate $template. + // + $mx_user->init_style(); + // session id check if (!$mx_request_vars->is_empty_request('sid')) Index: common.php =================================================================== RCS file: /cvsroot/mxbb/core/common.php,v retrieving revision 1.98 retrieving revision 1.99 diff -C2 -d -r1.98 -r1.99 *** common.php 13 Jul 2008 20:13:56 -0000 1.98 --- common.php 15 Jul 2008 22:02:43 -0000 1.99 *************** *** 173,176 **** --- 173,177 ---- // $board_config = array(); + $portal_config = array(); $userdata = array(); $theme = array(); *************** *** 265,276 **** // - // Is phpBB File Attachment MOD present? - // - if( file_exists($phpbb_root_path . 'attach_mod') ) - { - include_once($phpbb_root_path . 'attach_mod/attachment_mod.' . $phpEx); - } - - // // Remove install and contrib folders // --- 266,269 ---- |