Skip to content

Commit

Permalink
Slightly better chance of optimizing grouping users, by doing a
Browse files Browse the repository at this point in the history
sanity check on the data from the DB
  • Loading branch information
jamiemccarthy committed Dec 14, 2004
1 parent 96f2816 commit 59bf66e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion themes/slashcode/tasks/daily.pl
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ sub daily_generateDailyMailees {
story_always_topic story_always_author story_always_nexus
)) {
my $value = $user->{$cust_key};
my @values = sort split /[,']+/, $value;
my @values = sort grep /^\d+$/, split /[,']+/, $value;
$key .= '|' . join(',', @values);
}
# allow us to make certain emails sent individually,
Expand Down

0 comments on commit 59bf66e

Please sign in to comment.