From f1a687b057bcaa3119a85c9f8389b9c55b7eb0d3 Mon Sep 17 00:00:00 2001 From: rainydaysavings Date: Sat, 29 Aug 2020 06:16:01 +0100 Subject: [PATCH] [COMPONENT] Fixing typo --- 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 53de5b75dd..aa7be45927 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()) { - Post::storeNote($actor_id, $data['content'], $data['attachments'], $is_local = true); + C\Post::storeNote($actor_id, $data['content'], $data['attachments'], $is_local = true); } else { // TODO Display error }