diff options
Diffstat (limited to 'app/controller')
-rw-r--r-- | app/controller/obj.control.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/controller/obj.control.php b/app/controller/obj.control.php index f341b48..08172b5 100644 --- a/app/controller/obj.control.php +++ b/app/controller/obj.control.php @@ -34,14 +34,15 @@ class Obj extends Controller switch ($obj->type) { case "group": - $this->action_group($mod, $argv[0]); + $this->action_group($mod, $obj->guid); break; } } function action_group($mod, $guid) { - /* TODO */ + $mod->initGroup($guid); + include "view/obj/group.view.php"; } } |