Skip to content
Snippets Groups Projects
Commit c449d218 authored by Peter Rotich's avatar Peter Rotich
Browse files

bug: Add missing return statement

parent 7501f200
Branches
Tags
No related merge requests found
...@@ -90,7 +90,7 @@ class Group extends VerySimpleModel { ...@@ -90,7 +90,7 @@ class Group extends VerySimpleModel {
} }
function isEnabled() { function isEnabled() {
$this->get('flags') & self::FLAG_ENABLED !== 0; return ($this->get('flags') & self::FLAG_ENABLED !== 0);
} }
function isActive(){ function isActive(){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment