Fix bad returned value in Conf/Backends/MongoDB.pm

This commit is contained in:
Xavier Guimard 2018-12-10 22:47:45 +01:00
parent 6a8c54404a
commit ef6313b1c9
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ sub store {
$Lemonldap::NG::Common::Conf::msg .= "Unable to store conf: $@\n";
return 0;
}
return $res;
return $fields->{cfgNum};
}
sub load {