extra check for list of modules
This commit is contained in:
parent
9a2908fd56
commit
1e54f8f753
|
@ -977,7 +977,14 @@ class LAMConfig {
|
||||||
*/
|
*/
|
||||||
public function get_AccountModules($scope) {
|
public function get_AccountModules($scope) {
|
||||||
if (isset($this->typeSettings["modules_" . $scope])) {
|
if (isset($this->typeSettings["modules_" . $scope])) {
|
||||||
return explode(",", $this->typeSettings["modules_" . $scope]);
|
$modulesTmp = explode(",", $this->typeSettings["modules_" . $scope]);
|
||||||
|
$modules = array();
|
||||||
|
foreach ($modulesTmp as $mod) {
|
||||||
|
if (trim($mod) != '') {
|
||||||
|
$modules[] = $mod;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return $modules;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
return array();
|
return array();
|
||||||
|
|
Loading…
Reference in New Issue