summaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorwurblzap%gmail.com <>2006-10-05 04:36:47 +0200
committerwurblzap%gmail.com <>2006-10-05 04:36:47 +0200
commit11be725848887b59c3a266c0302eae5328a5fc01 (patch)
tree080018231d6edc2115f6900540271df92fa456d0 /contrib
parent3203f6c26127a2d1ebc3a0ebd6d0755c08b8ecc0 (diff)
downloadbugzilla-11be725848887b59c3a266c0302eae5328a5fc01.tar.gz
bugzilla-11be725848887b59c3a266c0302eae5328a5fc01.tar.xz
Bug 351178 renamed Bugzilla.get_version to Bugzilla.version and omitted
updating this.
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/bz_webservice_demo.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/bz_webservice_demo.pl b/contrib/bz_webservice_demo.pl
index a74274cab..4b5562a0e 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<Bugzilla.get_version> to the
+call, you may want to compare the result of C<Bugzilla.version> 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";