Hi Joe
Is this all running on a windows server? It somehow seems that something goes wrong with Joomla\'s constant for the dash (DS) and it also seems that MSIE can somehow replace %5C with \"\\\" automatically while firefox cannot :shock: <img src=\"{SMILIES_PATH}/icon_eek.gif\" alt=\":shock:\" title=\"Shocked\" />:shock:
However, you could try to \"override\" Joomla\'s constant by changing 2 lines (1 for the frontend and 1 for the admin) as following and see if this solves your problem:
in path_to_your_joomla/components/com_opensim/views/maps/view.html.php near line 27 it says:
$assetpath = \"components\".DS.$mapinfo[\'basename\'].DS.\"assets\".DS;
You can change this manually to
$assetpath = \"components/\".$mapinfo[\'basename\'].\"/assets/\";
...and in path_to_your_joomla/administrator/components/com_opensim/views/maps/view.html.php near line 25 the same:
$assetpath = \"components\".DS.$assetinfo[\'basename\'].DS.\"assets\".DS;
can be changed manually to
$assetpath = \"components/\".$assetinfo[\'basename\'].\"/assets/\";
This could solve this issue temporary for you. But I will need to have a closer look to when and why exactly this behaviour appears to fix it in one of the next releases ...
Greetz
FoTo50