diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2018-02-28 16:56:20 -0500 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2018-02-28 16:56:20 -0500 |
commit | 2e87bac8f9983faa6a1e46ee626d688a101fa070 (patch) | |
tree | 99158a381a91ae78a52b331a5a990bcf55377d32 /indra/newview/installers | |
parent | 5bbb78ee229a0a0c1d131989de2a503e641c62ff (diff) |
MAINT-8305: Fix longstanding typo in WriteRegStr per Ansariel Hiller.
Diffstat (limited to 'indra/newview/installers')
-rw-r--r-- | indra/newview/installers/windows/installer_template.nsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/installers/windows/installer_template.nsi b/indra/newview/installers/windows/installer_template.nsi index a8a8af8f45..14c8dba39f 100644 --- a/indra/newview/installers/windows/installer_template.nsi +++ b/indra/newview/installers/windows/installer_template.nsi @@ -351,7 +351,7 @@ WriteRegStr HKEY_CLASSES_ROOT "${URLNAME}\DefaultIcon" "" '"$INSTDIR\$VIEWER_EXE # URL param must be last item passed to viewer, it ignores subsequent params to avoid parameter injection attacks.
# MAINT-8305: On SLURL click, directly invoke the viewer, not the launcher.
WriteRegExpandStr HKEY_CLASSES_ROOT "${URLNAME}\shell\open\command" "" '"$INSTDIR\$VIEWER_EXE" -url "%1"'
-WriteRegStr HKEY_CLASSES_ROOT "x-grid-location-info"(default)" "URL:Second Life"
+WriteRegStr HKEY_CLASSES_ROOT "x-grid-location-info" "(default)" "URL:Second Life"
WriteRegStr HKEY_CLASSES_ROOT "x-grid-location-info" "URL Protocol" ""
WriteRegStr HKEY_CLASSES_ROOT "x-grid-location-info\DefaultIcon" "" '"$INSTDIR\$VIEWER_EXE"'
|