testbot/CGI: Fix the GetCurrentSession() call in ObjectModel::CGI::Page.

Francois Gouget fgouget at codeweavers.com
Fri May 2 12:51:39 CDT 2014


It was passing too many parameters.
---
 testbot/lib/ObjectModel/CGI/Page.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/testbot/lib/ObjectModel/CGI/Page.pm b/testbot/lib/ObjectModel/CGI/Page.pm
index 0661519..331243c 100644
--- a/testbot/lib/ObjectModel/CGI/Page.pm
+++ b/testbot/lib/ObjectModel/CGI/Page.pm
@@ -172,7 +172,7 @@ sub GetCurrentSession
 {
   my $self = shift;
 
-  return $self->{PageBase}->GetCurrentSession($self, @_);
+  return $self->{PageBase}->GetCurrentSession();
 }
 
 sub SetCurrentSession
-- 
1.9.2



More information about the wine-patches mailing list