|
From: FlorinCB <ory...@us...> - 2008-08-27 05:18:18
|
Update of /cvsroot/mxbb/core/modules/mx_phpbb3blocks/templates/prosilver In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv3560/modules/mx_phpbb3blocks/templates/prosilver Modified Files: prosilver.cfg Log Message: some missing stuff from phpBB3 backend Index: prosilver.cfg =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_phpbb3blocks/templates/prosilver/prosilver.cfg,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** prosilver.cfg 4 Feb 2008 16:53:58 -0000 1.2 --- prosilver.cfg 27 Aug 2008 05:17:39 -0000 1.3 *************** *** 42,46 **** // Prefix with PORTAL_URL // ------------------------------------------------------------------------- ! $current_template_images = PORTAL_URL . $current_template_path . "/images"; // ------------------------------------------------------------------------- --- 42,48 ---- // Prefix with PORTAL_URL // ------------------------------------------------------------------------- ! $current_template_root_path = str_replace($module_root_path, "", $current_template_path); ! $current_template_images = PORTAL_URL . $current_template_root_path . "/images"; ! $current_template_theme_images = !empty($current_template_root_path) && file_exists( $mx_root_path . $current_template_root_path . "/images" ) ? PORTAL_URL . $current_template_root_path . "/images" : ( !empty($cloned_template_path) && file_exists( $mx_root_path . $cloned_template_path . "/images" ) ? PORTAL_URL . cloned_template_path . "/images" : PORTAL_URL . "templates/_core/images"); // ------------------------------------------------------------------------- *************** *** 90,96 **** // Poll/Statistics Block // ! $mx_images['mx_voting_graphic'] = $images['voting_graphic']; // Array() ! $mx_images['mx_vote_bar'] = PHPBB_URL . $images['mx_graphics']['phpbb_icons'] . "/voting_bar.gif"; ! $mx_images['mx_vote_lcap'] = PHPBB_URL . $images['mx_graphics']['phpbb_icons'] . "/vote_lcap.gif"; ! $mx_images['mx_vote_rcap'] = PHPBB_URL . $images['mx_graphics']['phpbb_icons'] . "/vote_rcap.gif"; ?> \ No newline at end of file --- 92,104 ---- // Poll/Statistics Block // ! $mx_images['voting_graphic'][0] = "$current_template_theme_images/phpbb2/voting_bar.gif"; ! $mx_images['voting_graphic'][1] = "$current_template_theme_images/phpbb2/voting_bar.gif"; ! $mx_images['voting_graphic'][2] = "$current_template_theme_images/phpbb2/voting_bar.gif"; ! $mx_images['voting_graphic'][3] = "$current_template_theme_images/phpbb2/voting_bar.gif"; ! $mx_images['voting_graphic'][4] = "$current_template_theme_images/phpbb2/voting_bar.gif"; ! ! $mx_images['mx_voting_graphic'] = $mx_images['voting_graphic']; // Array() ! $mx_images['mx_vote_bar'] = "$current_template_theme_images/phpbb2/voting_bar.gif"; ! $mx_images['mx_vote_lcap'] = "$current_template_theme_images/phpbb2/vote_lcap.gif"; ! $mx_images['mx_vote_rcap'] = "$current_template_theme_images/phpbb2/vote_rcap.gif"; ?> \ No newline at end of file |