diff options
author | Malf Furious <m@lfurio.us> | 2017-04-09 23:22:03 -0400 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2017-04-09 23:22:03 -0400 |
commit | f97e2dc2fe38ac26dde0ca18ba69bc2c412e699b (patch) | |
tree | 4b460aabdf9c3600a9165b3d54b89b9323eab42b /app/class | |
parent | ce1e026c42dbe142202d17675791579dfc30d6b5 (diff) | |
download | scrott-f97e2dc2fe38ac26dde0ca18ba69bc2c412e699b.tar.gz scrott-f97e2dc2fe38ac26dde0ca18ba69bc2c412e699b.zip |
Fix bug in group class
Diffstat (limited to 'app/class')
-rw-r--r-- | app/class/group.class.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/class/group.class.php b/app/class/group.class.php index 1e98aff..5163cb8 100644 --- a/app/class/group.class.php +++ b/app/class/group.class.php @@ -59,6 +59,7 @@ class group extends agent $group->setOwner($owner); $group->name = $name; $group->objtype = "group"; + $group->saveObj(); return $group; } } |