From 578ef533ad4b75aa22cb0f97660111b9a10fc73a Mon Sep 17 00:00:00 2001 From: Cinders Date: Thu, 13 Jun 2013 17:05:57 -0600 Subject: [PATCH] FIRE-10620: Fix isInSecondLife() from incorrectly returning true. --- indra/newview/fsgridhandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/fsgridhandler.cpp b/indra/newview/fsgridhandler.cpp index 008ad59ca6..9961a509e9 100644 --- a/indra/newview/fsgridhandler.cpp +++ b/indra/newview/fsgridhandler.cpp @@ -1366,7 +1366,7 @@ void LLGridManager::updateIsInProductionGrid() // For any Second Life grid bool LLGridManager::isInSecondLife() { - return (EGridPlatform == GP_SLMAIN || GP_SLBETA); + return (EGridPlatform == GP_SLMAIN || EGridPlatform == GP_SLBETA); } // For Agni