Code Duplication    Length = 3-3 lines in 2 locations

main/cron/import_csv.php 2 locations

@@ 710-712 (lines=3) @@
707
                            }
708
709
                            // 2. Condition
710
                            if (!in_array($userInfo['email'], $avoidUsersWithEmail) && !in_array($row['email'], $avoidUsersWithEmail)) {
711
                                $email = $userInfo['email'];
712
                            }
713
714
                            // 3. Condition
715
                            if (in_array($userInfo['email'], $avoidUsersWithEmail) && !in_array($row['email'], $avoidUsersWithEmail)) {
@@ 715-717 (lines=3) @@
712
                            }
713
714
                            // 3. Condition
715
                            if (in_array($userInfo['email'], $avoidUsersWithEmail) && !in_array($row['email'], $avoidUsersWithEmail)) {
716
                                $email = $row['email'];
717
                            }
718
719
                            // Blocking password update
720
                            //$avoidUsersWithPassword = $this->conditions['importStudents']['update']['avoid']['password'];