Subject: | Support for 'generator'? |
Hi,
this query
api.php?action=query&generator=allpages&prop=revisions&rvprop=timestamp|user
works (on MW 1.14.0), but
my $articles = $mw->list ( {
action => 'query',
generator => 'allpages' ,
prop => 'revisions',
rvprop => 'timestamp|user',
gaplimit => 'max' })
|| die $mw->{error}->{code} . ': ' . $mw->{error}->{details};
throws this error
Use of uninitialized value in hash element at .../5.8.8/MediaWiki/API.pm line 543.
and returns $articles as empty. Should the allpages generator be supported?
Thanks,
Bjoern