|
From: FlorinCB <ory...@us...> - 2008-11-06 18:04:43
|
Update of /cvsroot/mxbb/core/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv27437/includes Modified Files: mx_functions_style.php Log Message: fix like the above fixes Index: mx_functions_style.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_style.php,v retrieving revision 1.110 retrieving revision 1.111 diff -C2 -d -r1.110 -r1.111 *** mx_functions_style.php 6 Nov 2008 00:11:26 -0000 1.110 --- mx_functions_style.php 6 Nov 2008 18:04:37 -0000 1.111 *************** *** 144,152 **** if (isset($mx_block->module_root_path)) { ! $moduleDefault = isset($mx_user->loaded_default_styles[$mx_block->module_root_path]) ? $mx_user->loaded_default_styles[$mx_block->module_root_path] : $mx_user->default_template_name; } else { ! $moduleDefault = isset($mx_user->loaded_default_styles[$module_root_path]) ? $mx_user->loaded_default_styles[$module_root_path] : $mx_user->default_template_name; } --- 144,152 ---- if (isset($mx_block->module_root_path)) { ! $moduleDefault = !empty($mx_user->loaded_default_styles[$mx_block->module_root_path]) ? $mx_user->loaded_default_styles[$mx_block->module_root_path] : $mx_user->default_template_name; } else { ! $moduleDefault = !empty($mx_user->loaded_default_styles[$module_root_path]) ? $mx_user->loaded_default_styles[$module_root_path] : $mx_user->default_template_name; } |