Code Duplication    Length = 6-6 lines in 2 locations

polls.php 2 locations

@@ 416-421 (lines=6) @@
413
                            xoops_error($xpLogHandler->getHtmlErrors());
414
                            break;
415
                        }
416
                    } else {
417
                        $optionObject->setVar('option_text', $optionTextArray[$key]);
418
                        $optionObject->setVar('option_color', $optionColorArray[$key]);
419
                        $optionObject->setVar('poll_id', $poll_id);
420
                        $xpOptHandler->insert($optionObject);
421
                    }
422
                } else {
423
                    // new option object
424
                    $optionObject          = $xpOptHandler->create();
@@ 426-431 (lines=6) @@
423
                    // new option object
424
                    $optionObject          = $xpOptHandler->create();
425
                    $optionTextArray[$key] = trim($optionTextArray[$key]);
426
                    if ('' !== $optionTextArray[$key]) { // ignore if text is empty
427
                        $optionObject->setVar('option_text', $optionTextArray[$key]);
428
                        $optionObject->setVar('option_color', $optionColorArray[$key]);
429
                        $optionObject->setVar('poll_id', $poll_id);
430
                        $xpOptHandler->insert($optionObject);
431
                    }
432
                    unset($optionObject);
433
                }
434
            }