two notify bug fixes:
- run it after refreshing so that all the page info is current - convert filenames into page names before checking against globmaster
parent
0908c4f678
commit
188d7c1961
|
@ -68,7 +68,11 @@ sub is_admin ($) { #{{{
|
|||
|
||||
sub commit_notify_list ($@) { #{{{
|
||||
my $committer=shift;
|
||||
my @pages=@_;
|
||||
|
||||
my @pages;
|
||||
foreach my $file (@_) {
|
||||
push @pages, grep { $pagesources{$_} eq $file } keys %pagesources;
|
||||
}
|
||||
|
||||
my @ret;
|
||||
my $userinfo=userinfo_retrieve();
|
||||
|
|
Loading…
Reference in New Issue