Content deleted Content added
Updating published sources: General: * Remove constructs that became "experimental" in Perl 5.18. * Add the possibility for the command "file" to be in redis/memcache. * Add utilities to send and list these commands. * Put job status data in redis/memc... |
Updating published sources: TemplateSubster: * Add halting check |
||
Line 94:
);
while(my $f=$iter->next){
if(!$f->{'_ok_'}){
$api->warn("Could not retrieve image info from iterator: ".$f->{'error'}."\n");
return 60;
}
next unless $f->{'imagerepository'} eq 'local' || $f->{'imagerepository'} eq 'shared';
$files{$f->{'title'}}=$f;
Line 107 ⟶ 111:
);
while(my $p=$iter->next){
if(!$p->{'_ok_'}){
$api->warn("Could not retrieve transclusions from iterator: ".$p->{'error'}."\n");
return 60;
}
$bl{$p->{'title'}}=1;
}
|