[Cpan-forum-commit] rev 145 - branches/db_changes/lib/CPAN
svn at pti.co.il
svn at pti.co.il
Fri Mar 25 10:45:03 IST 2005
Author: gabor
Date: 2005-03-25 10:45:02 +0200 (Fri, 25 Mar 2005)
New Revision: 145
Modified:
branches/db_changes/lib/CPAN/Forum.pm
Log:
include people subscribed in the All category in the listing of people monitoring
Modified: branches/db_changes/lib/CPAN/Forum.pm
===================================================================
--- branches/db_changes/lib/CPAN/Forum.pm 2005-03-25 08:43:15 UTC (rev 144)
+++ branches/db_changes/lib/CPAN/Forum.pm 2005-03-25 08:45:02 UTC (rev 145)
@@ -1636,7 +1636,10 @@
my ($self, $t, $gid) = @_;
my %people;
- foreach my $s (CPAN::Forum::Subscriptions->search(gid => $gid)) {
+ foreach my $s (
+ CPAN::Forum::Subscriptions->search(gid => $gid),
+ CPAN::Forum::Subscriptions_all->retrieve_all(),
+ ) {
$people{$s->uid} = {
username => $s->uid->username,
};
More information about the Cpan-forum-commit
mailing list