From 68e0457161aaa1e88d2208347bdcc5fc8e7a8be3 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Mon, 19 Dec 2005 23:32:25 +0000 Subject: [PATCH] Reversing the arguments for fetch_rev_string() on the full changeset link --- diff.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/diff.php b/diff.php index 7a3d837..038fbc9 100644 --- a/diff.php +++ b/diff.php @@ -56,7 +56,7 @@ if ($low == 0) $show['fullchangeset'] = ($viewsvn->paths->is_root_path($path) ? false : true); if ($show['fullchangeset']) { - $link['changeset'] = $viewsvn->paths->out('diff.php' . $viewsvn->paths->fetch_rev_str(true, $low, $high), $repos . '/'); + $link['changeset'] = $viewsvn->paths->out('diff.php' . $viewsvn->paths->fetch_rev_str(true, $high, $low), $repos . '/'); } $log = $viewsvn->svn->common->fetch_log($path, $high); @@ -127,4 +127,4 @@ eval('$template->flush("' . $template->fetch('diff') . '");'); || # $Id$ || ################################################################### \*=====================================================================*/ -?> \ No newline at end of file +?> -- 2.22.5