|
From: Jon O. <jon...@us...> - 2008-02-17 12:55:40
|
Update of /cvsroot/mxbb/core/templates/subSilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv20128 Modified Files: Tag: core28x subSilver.cfg Log Message: Minor update to custom module default style *.cfg updated Index: subSilver.cfg =================================================================== RCS file: /cvsroot/mxbb/core/templates/subSilver/subSilver.cfg,v retrieving revision 1.7.2.6 retrieving revision 1.7.2.7 diff -C2 -d -r1.7.2.6 -r1.7.2.7 *** subSilver.cfg 16 Feb 2008 21:44:37 -0000 1.7.2.6 --- subSilver.cfg 17 Feb 2008 12:55:33 -0000 1.7.2.7 *************** *** 63,66 **** --- 63,71 ---- $mx_images['mx_graphics']['menu_icons'] = file_exists( $mx_root_path . $current_template_path . "/images/menu_icons" ) ? $current_template_path . "/images/menu_icons" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/menu_icons" ) ? $cloned_template_path . "/images/menu_icons" : $default_template_path . "/images/menu_icons" ); $mx_images['mx_graphics']['admin_icons'] = file_exists( $mx_root_path . $current_template_path . "/images/admin_icons" ) ? $current_template_path . "/images/admin_icons" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/admin_icons" ) ? $cloned_template_path . "/images/admin_icons" : $default_template_path . "/images/admin_icons" ); + $mx_images['mx_graphics']['theme_graphics'] = file_exists( $mx_root_path . $current_template_path . "/images/theme" ) ? $current_template_path . "/images/theme" : ( file_exists( $mx_root_path . $cloned_template_path . "/images/theme" ) ? $cloned_template_path . "/images/theme" : $default_template_path . "/images/theme" ); + + // + // 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"); *************** *** 73,76 **** --- 78,86 ---- $current_template_menu_images = PORTAL_URL . $mx_images['mx_graphics']['menu_icons']; // Used by adminCP - Navigation Menu $current_template_admin_images = PORTAL_URL . $mx_images['mx_graphics']['admin_icons']; // Internal graphics for the mxBB adminCP + $current_template_theme_graphics = PORTAL_URL . $mx_images['mx_graphics']['theme_graphics']; // Internal graphics for the mxBB adminCP + + // + // Standalone mxBB installation? Where are the phpbb images? + // $current_template_phpbb_images = PHPBB_URL . $mx_images['mx_graphics']['phpbb_icons']; // phpBB graphics template *************** *** 230,233 **** --- 240,248 ---- \********************************************************************************/ // + // Theme Graphics + // + $mx_images['theme_graphics'] = "$current_template_theme_graphics/"; + + // // Logo // |