Verwaltung von Pflichtenhefttypen
[kivitendo-erp.git] / SL / DB / RequirementSpecType.pm
index cf48954..fa2c242 100644 (file)
@@ -11,7 +11,8 @@ sub validate {
   my ($self) = @_;
 
   my @errors;
-  push @errors, t8('The description is missing.') if !$self->description;
+  push @errors, t8('The description is missing.')    if !$self->description;
+  push @errors, t8('The description is not unique.') if  $self->get_first_conflicting('description');
 
   return @errors;
 }