From cb49261453283319e7f096c68f6abbbd8ea5b3e9 Mon Sep 17 00:00:00 2001 From: Murray Cumming Date: Fri, 13 Apr 2012 12:57:17 +0200 Subject: [PATCH] ReportPlace: Actually use the report name. * src/main/java/org/glom/web/client/place/ReportPlace.java getPlace(): Do not assign the report name to the quickfind. --- ChangeLog | 7 +++++++ src/main/java/org/glom/web/client/place/ReportPlace.java | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 352ccbc..9903cc1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,12 @@ 2012-04-13 Murray Cumming + ReportPlace: Actually use the report name. + + * src/main/java/org/glom/web/client/place/ReportPlace.java + getPlace(): Do not assign the report name to the quickfind. + +2012-04-13 Murray Cumming + Show java.library.path when complaining. * src/main/java/org/glom/web/server/OnlineGlomServiceImpl.java diff --git a/src/main/java/org/glom/web/client/place/ReportPlace.java b/src/main/java/org/glom/web/client/place/ReportPlace.java index f1361b1..34f18e8 100644 --- a/src/main/java/org/glom/web/client/place/ReportPlace.java +++ b/src/main/java/org/glom/web/client/place/ReportPlace.java @@ -58,7 +58,7 @@ public class ReportPlace extends HasRecordsPlace { // default empty values String documentID = ""; String tableName = ""; // an empty value represents the default table - final String reportName = ""; + String reportName = ""; String quickFind = ""; final HashMap params = getTokenParams(token); @@ -80,7 +80,7 @@ public class ReportPlace extends HasRecordsPlace { } if (params.get(reportKey) != null) { - quickFind = params.get(reportKey); + reportName = params.get(reportKey); } if (StringUtils.isEmpty(documentID)) { -- 2.1.4