|
From: FlorinCB <ory...@us...> - 2008-11-05 23:34:12
|
Update of /cvsroot/mxbb/core/includes In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv31481 Modified Files: mx_functions_style.php Log Message: fixed not working code Index: mx_functions_style.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions_style.php,v retrieving revision 1.108 retrieving revision 1.109 diff -C2 -d -r1.108 -r1.109 *** mx_functions_style.php 5 Nov 2008 23:05:42 -0000 1.108 --- mx_functions_style.php 5 Nov 2008 23:34:06 -0000 1.109 *************** *** 141,147 **** // if (!empty($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; ! $this->debug_paths .= '<br>Module'; $fileSearch = array(); --- 141,154 ---- // if (!empty($module_root_path)) ! { ! 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; ! } ! $this->debug_paths .= '<br>Module'; $fileSearch = array(); |