|
From: Jon O. <jon...@us...> - 2008-04-27 18:40:58
|
Update of /cvsroot/mxbb/core/templates/mxSilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv10176/mxSilver Modified Files: mxSilver.cfg Log Message: Style improvements... Index: mxSilver.cfg =================================================================== RCS file: /cvsroot/mxbb/core/templates/mxSilver/mxSilver.cfg,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** mxSilver.cfg 16 Feb 2008 21:43:26 -0000 1.3 --- mxSilver.cfg 27 Apr 2008 18:40:24 -0000 1.4 *************** *** 69,73 **** // Standalone MX-Publisher installation? Where are the phpbb images? // ! //$mx_images['mx_graphics']['phpbb_icons'] = file_exists( $phpbb_root_path . $current_template_path . "/images" ) ? $current_template_path . "/images" : ( file_exists( $phpbb_root_path . $cloned_template_path . "/images" ) ? $cloned_template_path . "/images" : $default_template_path . "/images"); $mx_images['mx_graphics']['phpbb_icons'] = file_exists( $mx_root_path . $current_template_path . "/images/phpbb2" ) ? $current_template_path . "/images/phpbb2" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/phpbb2" ) ? $cloned_template_path . "/images/phpbb2" : $default_template_path . "/images/phpbb2" ); --- 69,73 ---- // Standalone MX-Publisher installation? Where are the phpbb images? // ! //$mx_images['mx_graphics']['phpbb_icons'] = !empty($current_template_path) && file_exists( $phpbb_root_path . $current_template_path . "/images" ) ? $current_template_path . "/images" : ( !empty($cloned_template_path) && file_exists( $phpbb_root_path . $cloned_template_path . "/images" ) ? $cloned_template_path . "/images" : $default_template_path . "/images"); $mx_images['mx_graphics']['phpbb_icons'] = file_exists( $mx_root_path . $current_template_path . "/images/phpbb2" ) ? $current_template_path . "/images/phpbb2" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/phpbb2" ) ? $cloned_template_path . "/images/phpbb2" : $default_template_path . "/images/phpbb2" ); |