Merge branch 'ent-7339-warning-module-templates' into 'develop'

Improve pen list handling

Closes pandora_enterprise#7339

See merge request artica/pandorafms!4263
This commit is contained in:
Daniel Rodriguez 2021-09-21 13:16:44 +00:00
commit 1ac070d35d
1 changed files with 5 additions and 2 deletions

View File

@ -837,8 +837,11 @@ class ModuleTemplates extends HTML
$penInfo = db_get_all_rows_filter('tnetwork_profile_pen', ['id_np' => $this->id_np]);
$penList = [];
foreach ($penInfo as $pen) {
$penList[] = $pen['pen'];
// Handle if list of PEN does not exist or is empty.
if ($penInfo !== false) {
foreach ($penInfo as $pen) {
$penList[] = $pen['pen'];
}
}
$this->pen = implode(',', $penList);