Page MenuHomeFeedback Tracker

Utils Scipt Commands HELP Link for "+" Brings User To "-" Page On Biki
New, NormalPublic

Description

When using the "HELP" button in the Script Commands utility GUI when + is selected, the user will be brought to:
https://community.bistudio.com/wiki/-
instead of
https://community.bistudio.com/wiki/+

Details

Severity
Trivial
Resolution
Open
Reproducibility
Always
Operating System
Windows 10 x64
Category
Menu UI
Steps To Reproduce
  1. Launch editor
  2. Navigate to Tools > Utilities > Script Commands... OR open debug console and run utils 5
  3. Select "+" in tree view
  4. Click help

Observed:
Web browser opens to https://community.bistudio.com/wiki/-

Expected:
Web browser opens to https://community.bistudio.com/wiki/+

Additional Information

a3\functions_f\debug\utilities\utility_scriptcommands.sqf has a hashmap that corrects some urls. The map has + twice instead of - being in the map:

private _wikiPageConvert = createHashMapFromArray 
[
	["||", "a_or_b"], 
	["!", "!_a"],
	["!=", "a_!=_b"],
	["#", "a_hash_b"], 
	["%", "a_%25_b"],
	["&&", "a_&&_b"],
	["*", "a_*_b"],
	["+", "a_+_b"],
	["+", "a_-_b"], ////////// Error here
	["/", "a_/_b"],
	[":", "a_:_b"],
	["<", "a_less_b"],
	[">", "a_greater_b"],
	["<=", "a_less=_b"],
	[">=", "a_greater=_b"],
	["==", "a_==_b"],
	[">>", "config_greater_greater_name"],
	["^", "a_^_b"]
];

Event Timeline

Ansible2 created this task.Sep 22 2022, 1:24 AM