[-] BO : fix bug where drag and drop on tabs sub-lists is broken

This commit is contained in:
tDidierjean
2012-03-01 10:16:18 +00:00
parent 6cd96e78d3
commit 7ac2455758
+8
View File
@@ -919,6 +919,14 @@ if (Tools::isSubmit('ajaxTabsPositions'))
$id_tab = (int)(Tools::getValue('id_tab'));
$positions = Tools::getValue('tab');
// when changing positions in a tab sub-list, the first array value is empty and needs to be removed
if (!$positions[0])
{
unset($positions[0]);
// reset indexation from 0
$positions = array_merge($positions);
}
foreach ($positions as $position => $value)
{
$pos = explode('_', $value);