X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/af0085b83ecb257679c8c64324521f9515ae76b8..51264c4371793e3ac8990a54640f9e9b43e3f306:/SL/Menu.pm diff --git a/SL/Menu.pm b/SL/Menu.pm index ccfc32c96..8cc9c7e06 100644 --- a/SL/Menu.pm +++ b/SL/Menu.pm @@ -97,7 +97,7 @@ sub build_tree { # first, some sanity check. are all parents valid ids or empty? for my $node ($self->nodes) { next if !exists $node->{parent} || !$node->{parent} || $self->{by_id}->{$node->{id}}; - die "menu: node $node->{id} has non-existant parent $node->{parent}"; + die "menu: node $node->{id} has non-existent parent $node->{parent}"; } my %by_parent;