mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-04-08 18:55:09 +02:00
Fixed problems with module group when not exicts.
(cherry picked from commit 62028a0b474e2a0453bc42768e0b12e96a597410)
This commit is contained in:
parent
024719d9d6
commit
9e5fe175a0
@ -667,7 +667,10 @@ sub process_module_data ($$$$$$$$$$) {
|
||||
|
||||
# The group name has to be translated to a group ID
|
||||
if (defined $module_conf->{'module_group'}) {
|
||||
$module_conf->{'id_module_group'} = get_module_group_id ($dbh, $module_conf->{'module_group'});
|
||||
my $id_group_module = get_module_group_id ($dbh, $module_conf->{'module_group'});
|
||||
if ( $id_group_module >= 0) {
|
||||
$module_conf->{'id_module_group'} = $id_group_module;
|
||||
}
|
||||
delete $module_conf->{'module_group'};
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user