From 2758e4da29940122ef28e87312d2023cbd6b6c98 Mon Sep 17 00:00:00 2001 From: Marcus Ramberg Date: Sun, 9 Nov 2008 19:33:09 +0100 Subject: [PATCH] Oops, typo --- lib/MojoMojo/Schema/Page.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/MojoMojo/Schema/Page.pm b/lib/MojoMojo/Schema/Page.pm index 4c9501c7..9100b6ad 100644 --- a/lib/MojoMojo/Schema/Page.pm +++ b/lib/MojoMojo/Schema/Page.pm @@ -507,7 +507,7 @@ sub tags_with_counts { select => [ 'me.id', 'me.tag', 'count(me.tag) as refcount' ], as => [ 'id', 'tag', 'refcount' ], order_by => ['refcount'], - group_by => [ 'me.id', 'me.rtag'], + group_by => [ 'me.id', 'me.tag'], } ); return @tags;