From 140a4a4cdad22aa6e569eaf06dab4be3a124d82b Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Fri, 12 Sep 2014 22:40:12 +0200 Subject: [PATCH] Fixed syntax error. :-( Signed-off-by: Roland Haeder --- plugins/GroupPrivateMessage/GroupPrivateMessagePlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/GroupPrivateMessage/GroupPrivateMessagePlugin.php b/plugins/GroupPrivateMessage/GroupPrivateMessagePlugin.php index 380c82d54e..e56999283c 100644 --- a/plugins/GroupPrivateMessage/GroupPrivateMessagePlugin.php +++ b/plugins/GroupPrivateMessage/GroupPrivateMessagePlugin.php @@ -190,7 +190,7 @@ class GroupPrivateMessagePlugin extends Plugin function onEndGroupSaveForm(Action $action) { // The Action class must contain this method - assert(is_callable(array($action 'getGroup'))); + assert(is_callable(array($action, 'getGroup'))); $gps = null; $group = $action->getGroup(); -- 2.39.5