summaryrefslogtreecommitdiffstats
path: root/root/templates/history.tt
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-02-18 10:16:53 -0600
committerJesse Luehrs <doy@tozt.net>2011-02-18 11:52:22 -0600
commit1d7c03c912e1064edd8dfb293210a217aba48dd6 (patch)
tree71e8ebb97cef1dd7ddbb9a4a65bf0f41e2406aaf /root/templates/history.tt
parent62a18e4d0e05f5d8ef18a7c25456213060e39521 (diff)
downloadnarwhal-1d7c03c912e1064edd8dfb293210a217aba48dd6.tar.gz
narwhal-1d7c03c912e1064edd8dfb293210a217aba48dd6.zip
use 'view' instead of 'page' for the action name
Diffstat (limited to 'root/templates/history.tt')
-rw-r--r--root/templates/history.tt4
1 files changed, 2 insertions, 2 deletions
diff --git a/root/templates/history.tt b/root/templates/history.tt
index 1393b7e..d77358d 100644
--- a/root/templates/history.tt
+++ b/root/templates/history.tt
@@ -1,9 +1,9 @@
[% WRAPPER 'wrappers/root.tt' %]
-<p><a href="[% uri_for('action', 'page', 'page_name', page) %]">View Current</a></p>
+<p><a href="[% uri_for('action', 'view', 'page_name', page) %]">View Current</a></p>
<ul>
[% SET cur = head %]
[% WHILE cur %]
-<li><a href="[% uri_for('action', 'old_page', 'page_name', page, 'rev', cur.digest) %]">[% cur.author.id %] on [% cur.modification_date %]</a></li>
+<li><a href="[% uri_for('action', 'view_old', 'page_name', page, 'rev', cur.digest) %]">[% cur.author.id %] on [% cur.modification_date %]</a></li>
[% SET cur = cur.previous_revision %]
[% END %]
</ul>