Switching over to the contextual revision number
[viewsvn.git] / browse.php
index 7e3a24707d932ff80b599a6a3604102c874ac736..52b7a144fbb1adad4620313cd99e7d34fd0b3b46 100644 (file)
@@ -35,22 +35,22 @@ $latest = $controller->cachev->fetch_node();
 
 $link['log'] = $controller->href_compound('log.php');
 
-$show['head'] = ($latest['revision'] != $controller->revnum AND $controller->revnum != 'HEAD');
+$show['head'] = ($latest['revision'] != $controller->revctx);
 if ($show['head'])
 {
        $link['gohead'] = $controller->href_compound('browse.php', null, Paths::fetch_rev_str(false, 'HEAD'));
-       $link['diffhead'] = $controller->href_compound('diff.php', null, Paths::fetch_rev_str(true, 'HEAD', $controller->revnum));
+       $link['diffhead'] = $controller->href_compound('diff.php', null, Paths::fetch_rev_str(true, 'HEAD', $controller->revctx));
 }
 
-$show['prev'] = ($controller->cachev->fetch_prev_revision($controller->revnum) != -1);
+$show['prev'] = ($controller->cachev->fetch_prev_revision($controller->revctx) != -1);
 if ($show['prev'])
 {
-       $link['diffprev'] = $controller->href_compound('diff.php', null, Paths::fetch_rev_str(false, $controller->revnum));
+       $link['diffprev'] = $controller->href_compound('diff.php', null, Paths::fetch_rev_str(false, $controller->revctx));
 }
 
 // ###################################################################
 
-$revinfo = $controller->cachev->fetch_revision($latest['revision']);
+$revinfo = $controller->cachev->fetch_revision($controller->revctx);
 
 $revinfo['message_clean'] = SVNCommon::format_log_message($revinfo['message']);
 $revinfo['date'] = SVNCommon::format_date_string($revinfo['dateline']);