From 24b0e8c8bd2f90d42fb70181610ca5cfca233d32 Mon Sep 17 00:00:00 2001 From: Drake Date: Tue, 14 Nov 2006 16:52:32 +0000 Subject: [PATCH] Fix breakage from not passing $session into an upgrade function in the script for 7.2.1. --- docs/upgrades/upgrade_7.2.0-7.2.1.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/upgrades/upgrade_7.2.0-7.2.1.pl b/docs/upgrades/upgrade_7.2.0-7.2.1.pl index 674aee8cc..9b655b22e 100644 --- a/docs/upgrades/upgrade_7.2.0-7.2.1.pl +++ b/docs/upgrades/upgrade_7.2.0-7.2.1.pl @@ -21,7 +21,7 @@ my $quiet; # this line required my $session = start(); # this line required # upgrade functions go here -fixInOutBoardTable(); +fixInOutBoardTable($session); finish($session); # this line required