View | Details | Raw Unified | Return to bug 13602
Collapse All | Expand All

(-)a/members/memberentry.pl (-3 / +2 lines)
Lines 328-335 if ($op eq 'save' || $op eq 'insert'){ Link Here
328
      }
328
      }
329
    }
329
    }
330
  }
330
  }
331
  # Check if the userid is unique
331
  # Check if the userid is unique. userid is not passed if we are modifying the messaging preferences or borrower attributes.
332
  unless (Check_Userid($newdata{'userid'},$borrowernumber)) {
332
  if (($op ne 'modify' && $op ne 'save') && not(Check_Userid($newdata{'userid'},$borrowernumber))) {
333
    push @errors, "ERROR_login_exist";
333
    push @errors, "ERROR_login_exist";
334
  }
334
  }
335
  
335
  
336
- 

Return to bug 13602