summaryrefslogtreecommitdiffstats
path: root/root/templates/history.tt
diff options
context:
space:
mode:
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>