diff options
author | Graham Eames <grahamje@users.sourceforge.net> | 2005-11-09 20:36:04 +0000 |
---|---|---|
committer | Graham Eames <grahamje@users.sourceforge.net> | 2005-11-09 20:36:04 +0000 |
commit | ace13c86a5898635e146eb3fdb663392ec7d115f (patch) | |
tree | 12533ff816ac360d1a8cab90b73365253d1ad52b /phpBB/styles/subSilver | |
parent | 81ab6d83b8f67147d5f4b76df5cea47d5a79c936 (diff) | |
download | forums-ace13c86a5898635e146eb3fdb663392ec7d115f.tar forums-ace13c86a5898635e146eb3fdb663392ec7d115f.tar.gz forums-ace13c86a5898635e146eb3fdb663392ec7d115f.tar.bz2 forums-ace13c86a5898635e146eb3fdb663392ec7d115f.tar.xz forums-ace13c86a5898635e146eb3fdb663392ec7d115f.zip |
A couple of initial changes for the new module system with the mcp
(further changes are needed elsewhere for these to actually be
useful....)
git-svn-id: file:///svn/phpbb/trunk@5298 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/styles/subSilver')
-rw-r--r-- | phpBB/styles/subSilver/template/mcp_header.html | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/phpBB/styles/subSilver/template/mcp_header.html b/phpBB/styles/subSilver/template/mcp_header.html index adc1ccd419..0d85855b54 100644 --- a/phpBB/styles/subSilver/template/mcp_header.html +++ b/phpBB/styles/subSilver/template/mcp_header.html @@ -40,23 +40,22 @@ function marklist(form_name, status) <tr> <th>{L_OPTIONS}</th> </tr> - <!-- BEGIN mcp_section --> + <!-- BEGIN l_block1 --> <tr> - <!-- IF mcp_section.S_SELECTED --> - <td class="row1"><b class="nav">{mcp_section.L_TITLE}</b> + <!-- IF l_block1.S_SELECTED --> + <td class="row1"><b class="nav">{l_block1.L_TITLE}</b> <ul class="nav" style="margin: 0px; padding: 0px; list-style-type: none; line-height: 175%;"> - <!-- BEGIN mcp_subsection --> - <li>» <!-- IF mcp_section.mcp_subsection.S_SELECTED --><b>{mcp_section.mcp_subsection.L_TITLE}<!-- IF mcp_section.mcp_subsection.ADD_ITEM --> ({mcp_section.mcp_subsection.ADD_ITEM})<!-- ENDIF --></b><!-- ELSE --><a href="{mcp_section.mcp_subsection.U_TITLE}">{mcp_section.mcp_subsection.L_TITLE}<!-- IF mcp_section.mcp_subsection.ADD_ITEM --> ({mcp_section.mcp_subsection.ADD_ITEM})<!-- ENDIF --></a><!-- ENDIF --></li> - <!-- END mcp_subsection --> + <!-- BEGIN l_block2 --> + <li>» <!-- IF l_block1.l_block2.S_SELECTED --><b>{l_block1.l_block2.L_TITLE}</b><!-- ELSE --><a href="{l_block1.l_block2.U_TITLE}">{l_block1.l_block2.L_TITLE}</a><!-- ENDIF --></li> + <!-- END l_block2 --> </ul> - <!-- ELSE --> - <td class="row2" nowrap="nowrap" onmouseover="this.className='row1'" onmouseout="this.className='row2'" onclick="location.href='{mcp_section.U_TITLE}'"><a class="nav" href="{mcp_section.U_TITLE}">{mcp_section.L_TITLE}</a> + <td class="row2" nowrap="nowrap" onmouseover="this.className='row1'" onmouseout="this.className='row2'" onclick="location.href='{l_block1.U_TITLE}'"><a class="nav" href="{l_block1.U_TITLE}">{l_block1.L_TITLE}</a> <!-- ENDIF --> </td> </tr> - <!-- END mcp_section --> + <!-- END l_block1 --> </table> </td> |