From 02535bf196ae33f4a66ed379059e3b2a7afa7d98 Mon Sep 17 00:00:00 2001 From: Chris Nehren Date: Thu, 17 Apr 2008 21:09:49 +0000 Subject: [PATCH] fix a small scope bug --- lib/WebGUI/AssetExportHtml.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/AssetExportHtml.pm b/lib/WebGUI/AssetExportHtml.pm index 0f68c2341..c8757f122 100644 --- a/lib/WebGUI/AssetExportHtml.pm +++ b/lib/WebGUI/AssetExportHtml.pm @@ -517,7 +517,7 @@ sub exportGetUrlAsPath { my $config = $self->session->config; # make sure that the export path is valid - WebGUI::Asset->exportCheckPath($session); + WebGUI::Asset->exportCheckPath($self->session); # if we're still here, it's valid. get it. my $exportPath = $config->get('exportPath');