function panels_move_delete in Panels 5
Remove an item from an array
File
- ./
panels.module, line 667
Code
function panels_move_delete(&$array, &$position) {
unset($array[$position]);
// reindex the array now
$array = array_values($array);
}