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
No related branches found
No related tags found
No related merge requests found
......@@ -90,7 +90,7 @@ class Group extends VerySimpleModel {
}
function isEnabled() {
$this->get('flags') & self::FLAG_ENABLED !== 0;
return ($this->get('flags') & self::FLAG_ENABLED !== 0);
}
function isActive(){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment