|
From: FlorinCB <ory...@us...> - 2008-10-14 05:41:04
|
Update of /cvsroot/mxbb/core/templates/prosilver In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv23508 Modified Files: prosilver.cfg Log Message: for compatibility with some modules who require this image Index: prosilver.cfg =================================================================== RCS file: /cvsroot/mxbb/core/templates/prosilver/prosilver.cfg,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** prosilver.cfg 6 Sep 2008 04:42:33 -0000 1.9 --- prosilver.cfg 14 Oct 2008 05:40:59 -0000 1.10 *************** *** 67,70 **** --- 67,71 ---- $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']['mx_icons'] = !empty($current_template_path) && file_exists( $mx_root_path . $current_template_path . "/images" ) ? $current_template_path . "/images" : ( !empty($cloned_template_path) && file_exists( $mx_root_path . $cloned_template_path . "/images" ) ? cloned_template_path . "/images" : $default_template_path . "/images"); + $mx_images['mx_graphics']['theme_icons'] = file_exists( $mx_root_path . $current_template_path . "/theme/images" ) ? $current_template_path . "/theme/images" : ( file_exists( $mx_root_path . $cloned_template_path . "/theme/images" ) ? $cloned_template_path . "/theme/images" : $default_template_path . "/theme/images" ); // *************** *** 78,81 **** --- 79,83 ---- $current_template_phpbb_images = PHPBB_URL . $mx_images['mx_graphics']['phpbb_icons']; // phpBB graphics template $current_template_theme_images = PORTAL_URL . $mx_images['mx_graphics']['mx_icons']; + $current_template_style_images = PORTAL_URL . $mx_images['mx_graphics']['theme_icons']; // *************** *** 259,262 **** // Online Block // ! $mx_images['mx_who_is_online'] = "$current_template_theme_images/whosonline.gif"; ?> --- 261,264 ---- // Online Block // ! $mx_images['mx_who_is_online'] = "$current_template_style_images/whosonline.gif"; ?> |