innreport feature request ...

Fabien Tassin fta at oleane.net
Fri Oct 1 09:34:44 UTC 1999


According to The Hermit Hacker:
> 
> Applied...doesn't seem to break anything, but it doesn't appar to get
> added to the report either?

well.. it should have worked. no time to check now :( sorry.
 
> Also, would it make sense to change "Newsgroups request counts (by
> category)" such that it doesn't print anything if count == 0?  I didn't
> think it used to, maybe a bug got introduced?  Nope, just checked
> yesterdays, before this recent patch, and it does too...makes for a very
> long report when >1000 lines just report 0 :)

hmm.. I've only made a small change for that section :

before:
 my ($num) = $text =~ m/foo (\d+) bar/;
 if ($num != 0) { ..... }

after:
 my ($num) = $text =~ m/foo (\d+) bar/;
 if ($num) { ..... }

looks equivalent to me..

-- 
Fabien Tassin -+- fta at oleane.net


More information about the inn-workers mailing list