The example given in https://community.bistudio.com/wiki/htmlLoad example 2 shows the use of URI parameters, for example,
_control htmlLoad "http://www.bistudio.com/newsfeed/arma3_news.php?build=main&language=English"
Where the URI is created via script:
_newsOnline = "http://www.bistudio.com/newsfeed/arma3_news.php?build=" + _build + "&language=" + language;
This works fine if the URL is pointing at bistudio.com (as seen in BIS_fnc_GUInewsfeed).
However, custom URIs no longer work due to the implementation of allowedHTMLLoadURIs config setting in CfgCommands. For example,
_newsOnline = "http://alivemod.com/alive_news.php?map=" + _map + "&mission=" + _mission + "&player=" + _player;
allowedHTMLLoadURIs seems to only accept fixed URIs and not dynamically generated URIs.
Can we please support URI wildcards? i.e. allowedHTMLLoadURIs += {"http://alivemod.com/alive_news.php*"};
This breaks the ALiVE Newsfeed functionality and any other mod that follows your htmlLoad example 2 as documented in the wiki.