From 849a0db625ae78c316ea0a04523e8a4eed6bdc0c Mon Sep 17 00:00:00 2001 From: Robin Kupper Date: Wed, 6 Jul 2011 11:37:19 +0200 Subject: [PATCH] Minor fixes in query title --- src/de/diddiz/LogBlock/QueryParams.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/de/diddiz/LogBlock/QueryParams.java b/src/de/diddiz/LogBlock/QueryParams.java index 5a794cb..cab0233 100644 --- a/src/de/diddiz/LogBlock/QueryParams.java +++ b/src/de/diddiz/LogBlock/QueryParams.java @@ -96,7 +96,7 @@ public class QueryParams implements Cloneable blocknames[i] = materialName(types.get(i)); title.append(listing(blocknames, ", ", " and ") + " "); } else - title.append("Block "); + title.append("block "); if (bct == BlockChangeType.CREATED) title.append("creations "); else if (bct == BlockChangeType.DESTROYED) @@ -110,7 +110,7 @@ public class QueryParams implements Cloneable if (minutes > 0) title.append("in the last " + minutes + " minutes "); if (minutes < 0) - title.append("up to " + minutes + " minutes ago "); + title.append("up to " + minutes * -1 + " minutes ago "); if (loc != null && radius > 0) title.append("within " + radius + " blocks of you "); if (loc != null && radius == 0)