From 457586edab7faad12f92be1dadb02be6a58133df 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 e48aebafaa..3106359b73 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; -- 2.39.5