- Code: Select all
string[] checkedItemInfo = checkedItem.Split(' ');
Solution is maybe as check checkedItem as substring in availableAddons to get real name.
I make for now workaround in UA interface.php to replace spaces to _ then is not problem with space as delimiter. But this bug is in UU and not in UA.
- Code: Select all
//Workaround due to bad name separation in UU 2.5.0
//$name = addslashes($row['name']);
$name = strtr(addslashes($row['name']), " ", "_");