From 4c021a283863dc604cd424b260d3eb2b95184f25 Mon Sep 17 00:00:00 2001 From: Hugo Sales Date: Sat, 10 Oct 2020 18:14:03 +0000 Subject: [PATCH] [POSTING] Fix missing use statement --- components/Posting/Posting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();