From: <var...@us...> - 2021-08-09 15:06:00
|
Revision: 10468 http://sourceforge.net/p/phpwiki/code/10468 Author: vargenau Date: 2021-08-09 15:05:57 +0000 (Mon, 09 Aug 2021) Log Message: ----------- Add Redirected message in Portland and Wordpress themes Modified Paths: -------------- trunk/themes/Portland/templates/browse.tmpl trunk/themes/Wordpress/templates/browse.tmpl Modified: trunk/themes/Portland/templates/browse.tmpl =================================================================== --- trunk/themes/Portland/templates/browse.tmpl 2021-08-09 14:46:56 UTC (rev 10467) +++ trunk/themes/Portland/templates/browse.tmpl 2021-08-09 15:05:57 UTC (rev 10468) @@ -9,8 +9,12 @@ <?php echo WikiLink($page, 'existing', _("View the current version."))?></p> <hr class="ignore" /> <?php } ?> +<?php if (!empty($redirected)) { ?> + <p><?php echo $redirected ?></p> +<?php } ?> <?php echo $CONTENT?> + <hr /> <?php echo Template('actionbar') ?> <?php // The bottom navigation/search bar ?> Modified: trunk/themes/Wordpress/templates/browse.tmpl =================================================================== --- trunk/themes/Wordpress/templates/browse.tmpl 2021-08-09 14:46:56 UTC (rev 10467) +++ trunk/themes/Wordpress/templates/browse.tmpl 2021-08-09 15:05:57 UTC (rev 10468) @@ -9,8 +9,12 @@ <?php echo WikiLink($page, 'existing', _("View the current version."))?>.</p> <hr class="ignore" /> <?php } ?> +<?php if (!empty($redirected)) { ?> + <p><?php echo $redirected ?></p> +<?php } ?> <?php echo $CONTENT?> + <hr /> <?php echo Template('actionbar') ?> <?php // The bottom navigation/search bar ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |