
All that was changed was the version numbering and the MODx install file was updated for MODx 1.2.0bill.marcy wrote:Is there an upgrade path form 0.0.6?
Code: Select all
http://opensource.org/licenses/gpl-license.php GNU General Public License v2
RedBar³
Places a links/navigation bar along the top and bottom of your forums which can be easily updated via the ACP
This is a remake of my phpBB2 MOD - please note that I will not be providing an upgrade path from the phpBB2 version to phpBB3.
Kenny Cameron
cherokee red
http://dev.sixstringromance.co.uk
dev@sixstringromance.co.uk
1.0.0
easy
520
3.0.1
2008-04-01
0
0
1
1st Beta Release
2008-04-02
0
0
2
Added edits to overall_footer
Split template edits into separate prosilver XML file
2008-04-24
0
0
4
Added support for different coloured links
Revmoved .redlink class from css file to accomodate above
Removed colour from CSS edits
2008-06-24
1
0
0
Submitted to MODs Database
<div class="navbar">
<!-- REDBAR -->
<div class="redbar">
<div class="inner"><span class="corners-top"><span></span></span>
<div id="red-bar">
<div style="text-align:center;">
<!-- BEGIN redbar --><a href="{redbar.U_REDBAR_URL}" style="color: #{redbar.REDBAR_COLOUR};">{redbar.REDBAR_NAME}</a><!-- IF redbar.S_LAST_ROW --> <!-- ELSE --> <strong>‹</strong> <!-- ENDIF --><!-- END redbar -->
</div>
</div>
<span class="corners-bottom"><span></span></span></div>
</div>
<!-- REDBAR -->
<div class="navbar">
<!-- REDBAR -->
<div class="redbar">
<div class="inner"><span class="corners-top"><span></span></span>
<div id="red-bar">
<div style="text-align:center;">
<!-- BEGIN redbar --><a href="{redbar.U_REDBAR_URL}" style="color: #{redbar.REDBAR_COLOUR};">{redbar.REDBAR_NAME}</a><!-- IF redbar.S_LAST_ROW --> <!-- ELSE --> <strong>‹</strong> <!-- ENDIF --><!-- END redbar -->
</div>
</div>
<span class="corners-bottom"><span></span></span></div>
</div>
<!-- REDBAR -->
/* Round cornered boxes and backgrounds
---------------------------------------- */
.redbar {
background-color: #0076b1;
background-image: url("{T_THEME_PATH}/images/bg_list.gif");
}
/* Search box
--------------------------------------------- */
#red-bar {
font-weight: bold;
font-size: 1.1em;
}
/* Round cornered boxes and backgrounds
---------------------------------------- */
.redbar {
background: #ebebeb none repeat-x 0 0;
margin-bottom: 4px;
padding: 0 5px;
}
Code: Select all
<?xml-stylesheet type="text/xsl" href="../modx.prosilver.en.xsl"?>
Code: Select all
<?xml-stylesheet type="text/xsl" href="modx.prosilver.en.xsl"?>
I installed this update few days ago and had problems with this mod not appearing in ACP. This hint solved my problems! Its wierd that you havent updated your mod yet!cherokee red wrote:Ok, i've tracked the problem down - I've not correctly set up the permissions yet.
For a quick fix:
Open includes/acp/info/acp_redbar.php
FIND:REPLACE WITH:Code: Select all
'redbar' => array('title' => 'ACP_REDBAR', 'auth' => 'acl_a_redbar', 'cat' => array('ACP_CAT_USERS')),
I'll post an update shortlyCode: Select all
'redbar' => array('title' => 'ACP_REDBAR', 'auth' => 'acl_a_ranks', 'cat' => array('ACP_CAT_USERS')),
Code: Select all
INSERT INTO `phpbb_acl_options` (`auth_option`, `is_global`, `is_local`, `founder_only`) VALUES
('a_redbar', 1, 0, 0);