From: <var...@us...> - 2022-01-04 11:21:26
|
Revision: 10815 http://sourceforge.net/p/phpwiki/code/10815 Author: vargenau Date: 2022-01-04 11:21:24 +0000 (Tue, 04 Jan 2022) Log Message: ----------- themes/Portland/templates/browse.tmpl and themes/Wordpress/templates/browse.tmpl: use Button 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 2022-01-04 11:20:37 UTC (rev 10814) +++ trunk/themes/Portland/templates/browse.tmpl 2022-01-04 11:21:24 UTC (rev 10815) @@ -5,7 +5,7 @@ <?php if ($revision and !$revision->isCurrent() and ($action!='revert')) { ?> <p class="warning_msg"><?php echo _("Note:") ?> <?php echo _("You are viewing an old revision of this page.") ?> - <?php echo WikiLink($page, 'existing', _("View the current version.")) ?> + <?php echo Button('browse', _("View the current version."), $page) ?> </p> <hr class="ignore" /> <?php } ?> Modified: trunk/themes/Wordpress/templates/browse.tmpl =================================================================== --- trunk/themes/Wordpress/templates/browse.tmpl 2022-01-04 11:20:37 UTC (rev 10814) +++ trunk/themes/Wordpress/templates/browse.tmpl 2022-01-04 11:21:24 UTC (rev 10815) @@ -5,7 +5,7 @@ <?php if ($revision and !$revision->isCurrent() and ($action!='revert')) { ?> <p class="warning_msg"><?php echo _("Note:") ?> <?php echo _("You are viewing an old revision of this page.") ?> - <?php echo WikiLink($page, 'existing', _("View the current version.")) ?> + <?php echo Button('browse', _("View the current version."), $page) ?> </p> <hr class="ignore" /> <?php } ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |