From: wurblzap%gmail.com <> Date: Thu, 5 Oct 2006 02:36:47 +0000 (+0000) Subject: Bug 351178 renamed Bugzilla.get_version to Bugzilla.version and omitted X-Git-Tag: bugzilla-2.23.3~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=11be725848887b59c3a266c0302eae5328a5fc01;p=thirdparty%2Fbugzilla.git Bug 351178 renamed Bugzilla.get_version to Bugzilla.version and omitted updating this. --- diff --git a/contrib/bz_webservice_demo.pl b/contrib/bz_webservice_demo.pl index a74274cab4..4b5562a0ed 100755 --- a/contrib/bz_webservice_demo.pl +++ b/contrib/bz_webservice_demo.pl @@ -138,12 +138,12 @@ my $proxy = XMLRPC::Lite->proxy($Bugzilla_uri, =head2 Checking Bugzilla's version To make sure the Bugzilla you're connecting to supports the methods you wish to -call, you may want to compare the result of C to the +call, you may want to compare the result of C to the minimum required version your application needs. =cut -$soapresult = $proxy->call('Bugzilla.get_version'); +$soapresult = $proxy->call('Bugzilla.version'); _die_on_fault($soapresult); print 'Connecting to a Bugzilla of version ' . $soapresult->result() . ".\n";