From 0d622d1cdc55f091b7d4219b2763fac7902fbd53 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sun, 29 Jul 2007 18:48:32 +0200 Subject: [PATCH] Fix an over-grouping bug. --- perl/Sesse/pr0n/Index.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/perl/Sesse/pr0n/Index.pm b/perl/Sesse/pr0n/Index.pm index a91f8fd..239c4b9 100644 --- a/perl/Sesse/pr0n/Index.pm +++ b/perl/Sesse/pr0n/Index.pm @@ -335,9 +335,9 @@ sub handler { $day = ", " . $ref->{'day'}; } - if ($takenby ne $lastupl) { + if ($day ne $lastupl) { $r->print("

\n\n") if ($lastupl ne "" && $rot != 1); - $lastupl = $takenby; + $lastupl = $day; my %newsettings = %settings; -- 2.39.2