diff --git a/components/Posting/Posting.php b/components/Posting/Posting.php index fcbc46644e..2ef8500371 100644 --- a/components/Posting/Posting.php +++ b/components/Posting/Posting.php @@ -67,7 +67,7 @@ class Posting extends Module if ($form->isSubmitted()) { $data = $form->getData(); if ($form->isValid()) { - C\Post::storeNote($actor_id, $data['content'], $data['attachments'], $is_local = true); + self::storeNote($actor_id, $data['content'], $data['attachments'], $is_local = true); throw new RedirectException(); } else { throw new InvalidFormException();