Revision 0c5c9aab
Von Bernd Bleßmann vor etwa 1 Jahr hinzugefügt
SL/Model/Record.pm | ||
---|---|---|
211 | 211 |
# validity token |
212 | 212 |
my $validity_token; |
213 | 213 |
if (my $validity_token_specs = $params{with_validity_token}) { |
214 |
if (!defined $validity_token_specs->{scope} || !defined $validity_token_specs->{token}) {
|
|
214 |
if (!defined $validity_token_specs->{scope} || !exists $validity_token_specs->{token}) {
|
|
215 | 215 |
croak ('you must provide a hash ref "with_validity_token" with the keys "scope" and "token" if you want the token to be handled'); |
216 | 216 |
} |
217 | 217 |
|
Auch abrufbar als: Unified diff
S:M:Record: fix check, ob validiy token übergeben wurde.
Das token kann auch leer sein, z.B. wenn das record schon einmal
gespeichert wurde, also eine id hat.