diff options
author | Martin Reddy <lynx@lindenlab.com> | 2009-10-20 14:07:50 +0000 |
---|---|---|
committer | Martin Reddy <lynx@lindenlab.com> | 2009-10-20 14:07:50 +0000 |
commit | eb620735fc27d5f4fe21b52deceaec2818fea27d (patch) | |
tree | 07c068436dc31ce970517c4f49104be6a32ed95a /indra/newview/lleventnotifier.cpp | |
parent | 2180706f4cb5e8f5ba24b3973a25a50c6176be38 (diff) |
DEV-41358: Added support for search categories.
You can now specify a search category for all web-based searches,
e.g., "all" (default), "people", "places", "events", "groups", "wiki",
"destinations", "classifieds". Specifying a category will add the
relevant subdir to the search URL, as specified by the search team.
Diffstat (limited to 'indra/newview/lleventnotifier.cpp')
-rw-r--r-- | indra/newview/lleventnotifier.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/lleventnotifier.cpp b/indra/newview/lleventnotifier.cpp index 68a4f31730..867fb0255a 100644 --- a/indra/newview/lleventnotifier.cpp +++ b/indra/newview/lleventnotifier.cpp @@ -198,7 +198,7 @@ bool LLEventNotification::handleResponse(const LLSD& notification, const LLSD& r break; } case 1: - LLFloaterReg::showInstance("search", LLSD().insert("panel", "event").insert("id", S32(getEventID()))); + LLFloaterReg::showInstance("search", LLSD().insert("category", "events").insert("id", S32(getEventID()))); break; case 2: break; |