From: <var...@us...> - 2009-04-02 12:51:35
|
Revision: 6765 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6765&view=rev Author: vargenau Date: 2009-04-02 12:51:20 +0000 (Thu, 02 Apr 2009) Log Message: ----------- PageTrail Modified Paths: -------------- trunk/themes/gforge/templates/browse.tmpl Modified: trunk/themes/gforge/templates/browse.tmpl =================================================================== --- trunk/themes/gforge/templates/browse.tmpl 2009-04-02 12:50:10 UTC (rev 6764) +++ trunk/themes/gforge/templates/browse.tmpl 2009-04-02 12:51:20 UTC (rev 6765) @@ -1,6 +1,9 @@ <?php // -*-html-*- rcs_id('$Id$'); ?> +<?php +$curuserprefs = $user->getPreferences(); +?> <?php if ($revision and !$revision->isCurrent()) { ?> <p><strong><?=_("Note:")?></strong> @@ -13,14 +16,19 @@ <?php } ?> <?php if (WIKI_NAME == "cssforge") { ?> -<table width="100%" bgcolor="#e9fbff" style="border-style:solid;border-color:blue;border-width:2px"> +<div class="browsebanner"> +<table> <tr> -<td><p align="center"><em><b>This Help page is located in the main Forge wiki. You are not in your project's wiki.</b></em></p> -</td> +<td>This Help page is located in the Forge main wiki. You are not in your project's wiki.</td> </tr> </table> +</div> <?php } ?> +<?php if ($curuserprefs->get('pageTrail')) { ?> +<?plugin PageTrail ?> +<?php } ?> + <?=$CONTENT?> <div id="footer"><?php // for top & bottom toolbars stylesheet ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |