|
From: Jon O. <jon...@us...> - 2008-04-27 18:41:19
|
Update of /cvsroot/mxbb/core/templates/subSilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv10879 Modified Files: Tag: core28x subSilver.cfg Log Message: Style update Index: subSilver.cfg =================================================================== RCS file: /cvsroot/mxbb/core/templates/subSilver/subSilver.cfg,v retrieving revision 1.7.2.7 retrieving revision 1.7.2.8 diff -C2 -d -r1.7.2.7 -r1.7.2.8 *** subSilver.cfg 17 Feb 2008 12:55:33 -0000 1.7.2.7 --- subSilver.cfg 27 Apr 2008 18:41:08 -0000 1.7.2.8 *************** *** 68,72 **** // Standalone mxBB 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"); // --- 68,72 ---- // Standalone mxBB 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"); // |