From cc7b3fe3efe47842bd5b757cc33e9553b9476d81 Mon Sep 17 00:00:00 2001 From: martin Date: Fri, 7 May 2010 11:26:21 +0000 Subject: [PATCH] Fix a bug in upgrade script where session was not passed. --- docs/upgrades/upgrade_7.9.4-7.9.5.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/upgrades/upgrade_7.9.4-7.9.5.pl b/docs/upgrades/upgrade_7.9.4-7.9.5.pl index 52e1d2faa..f8aaae553 100644 --- a/docs/upgrades/upgrade_7.9.4-7.9.5.pl +++ b/docs/upgrades/upgrade_7.9.4-7.9.5.pl @@ -31,7 +31,7 @@ my $quiet; # this line required my $session = start(); # this line required # upgrade functions go here -modifySortItems(); +modifySortItems( $session ); finish($session); # this line required