Merge branch 'ent-11103-15535-agente-debe-de-ser-aplicado-cuando-ya-esta-aplicado' into 'develop'

fixed modules adopted pandora_enterprise#11103

See merge request artica/pandorafms!5836
This commit is contained in:
Diego Muñoz-Reja 2023-05-18 09:20:31 +00:00
commit 4a8e8f4ae1
2 changed files with 6 additions and 6 deletions

View File

@ -840,8 +840,8 @@ if ($modules !== false) {
$linked = policies_is_module_linked($module['id_agente_modulo']);
$adopt = policies_is_module_adopt($module['id_agente_modulo']);
if ($linked !== false) {
if ($adopt === true) {
if ((bool) $linked !== false) {
if ((bool) $adopt === true) {
$img = 'images/policies_brick.png';
$title = '('.__('Adopted').') '.$policyInfo['name_policy'];
} else {
@ -849,7 +849,7 @@ if ($modules !== false) {
$title = $policyInfo['name_policy'];
}
} else {
if ($adopt === true) {
if ((bool) $adopt === true) {
$img = 'images/policies_not_brick.png';
$title = '('.__('Unlinked').') ('.__('Adopted').') '.$policyInfo['name_policy'];
} else {

View File

@ -1081,8 +1081,8 @@ if (check_login()) {
$policyInfo = policies_info_module_policy($module['id_policy_module']);
$adopt = policies_is_module_adopt($module['id_agente_modulo']);
if ($linked === true) {
if ($adopt === true) {
if ((bool) $linked === true) {
if ((bool) $adopt === true) {
$img = 'images/policies_brick.png';
$title = '('.__('Adopted').') '.$name_policy;
} else {
@ -1090,7 +1090,7 @@ if (check_login()) {
$title = $name_policy;
}
} else {
if ($adopt === true) {
if ((bool) $adopt === true) {
$img = 'images/policies_not_brick.png';
$title = '('.__('Unlinked').') ('.__('Adopted').') '.$name_policy;
} else {