diff options
author | Adam Moss <moss@lindenlab.com> | 2009-09-30 17:46:31 +0000 |
---|---|---|
committer | Adam Moss <moss@lindenlab.com> | 2009-09-30 17:46:31 +0000 |
commit | feabeb496518f28359f654fdc397354355743589 (patch) | |
tree | 99fa7dd202caac786d7032a2c8bd187a1f5a5ad0 /indra/newview/llstartup.cpp | |
parent | a3ba111e39be0bfa0278dfce66f4608fac7c0aa2 (diff) |
DEV-35039 Viewer 2.0 Help System - Viewer Development
svn merge -r134800:134805 svn+ssh://svn.lindenlab.com/svn/linden/branches/viewer2help-3
Diffstat (limited to 'indra/newview/llstartup.cpp')
-rw-r--r-- | indra/newview/llstartup.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp index 6a55b571ae..053b863b6d 100644 --- a/indra/newview/llstartup.cpp +++ b/indra/newview/llstartup.cpp @@ -1429,6 +1429,17 @@ bool idle_startup() LLStartUp::deletePasswordFromDisk(); } + // this is the base used to construct help URLs + text = LLUserAuth::getInstance()->getResponse("help_url_format"); + if (!text.empty()) + { + // replace the default help URL format + gSavedSettings.setString("HelpURLFormat",text); + + // don't fall back to Nebraska's pre-connection static help + gSavedSettings.setBOOL("HelpUseLocal", false); + } + // this is their actual ability to access content text = LLUserAuth::getInstance()->getResponse("agent_access_max"); if (!text.empty()) |