Rob Locke
10-04-2005, 03:01 PM
Hi Brian,
A very small thing I thought I'd draw your attention to. The CMPS control panel logo is broken, because the current 'vba_cmps_admin.php' code below looks for it in the selected vB CP style folder:echo '<div><img alt="" border="" src="../cpstyles/' . $vbulletin->options['cpstylefolder'] . '/vba_cp_logo.gif" title="' . $vbphrase['admin_control_panel'] . '" hspace="4" vspace="4" /></div><div style="width:168px; padding:4px">';
I made this little modification so it shows up regardless of what CP style is chosen, which I copied from 'vba_gallery_admin.php'
echo '<div><img alt="" border="" src="../cpstyles/vba_cp_logo.gif" title="' . $vbphrase['admin_control_panel'] . '" hspace="4" vspace="4" /></div><div style="width:168px; padding:4px">';
Hope this helps.
A very small thing I thought I'd draw your attention to. The CMPS control panel logo is broken, because the current 'vba_cmps_admin.php' code below looks for it in the selected vB CP style folder:echo '<div><img alt="" border="" src="../cpstyles/' . $vbulletin->options['cpstylefolder'] . '/vba_cp_logo.gif" title="' . $vbphrase['admin_control_panel'] . '" hspace="4" vspace="4" /></div><div style="width:168px; padding:4px">';
I made this little modification so it shows up regardless of what CP style is chosen, which I copied from 'vba_gallery_admin.php'
echo '<div><img alt="" border="" src="../cpstyles/vba_cp_logo.gif" title="' . $vbphrase['admin_control_panel'] . '" hspace="4" vspace="4" /></div><div style="width:168px; padding:4px">';
Hope this helps.