Code Duplication    Length = 3-3 lines in 2 locations

main/cron/import_csv.php 2 locations

@@ 651-653 (lines=3) @@
648
                            }
649
650
                            // 2. Condition
651
                            if (!in_array($userInfo['email'], $avoidUsersWithEmail) && !in_array($row['email'], $avoidUsersWithEmail)) {
652
                                $email = $userInfo['email'];
653
                            }
654
655
                            // 3. Condition
656
                            if (in_array($userInfo['email'], $avoidUsersWithEmail) && !in_array($row['email'], $avoidUsersWithEmail)) {
@@ 656-658 (lines=3) @@
653
                            }
654
655
                            // 3. Condition
656
                            if (in_array($userInfo['email'], $avoidUsersWithEmail) && !in_array($row['email'], $avoidUsersWithEmail)) {
657
                                $email = $row['email'];
658
                            }
659
660
                            // Blocking password update
661
                            //$avoidUsersWithPassword = $this->conditions['importStudents']['update']['avoid']['password'];