Improve detection & removal of empty conditions

This commit is contained in:
Nathan Gray 2010-09-14 22:18:56 +00:00
parent 3b46acda8f
commit 5ed66702ba

View File

@ -267,11 +267,11 @@ class importexport_wizard_basic_import_csv
{
array_shift($content['conditions']);
foreach($content['conditions'] as $key => &$condition) {
// Clear empties
if($condition['string'] == '') {
// Clear conditions that don't do anything
foreach($content['conditions'] as $key => $condition) {
if($condition['true']['action'] == 'none' && !$condition['true']['stop']
&& $condition['false']['action'] == 'none' && !$condition['false']['stop']) {
unset($content['conditions'][$key]);
continue;
}
}