From 7c9b5a3fe40a641af1cb6003b03b2352576a0c4b Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 4 May 2017 15:57:40 +0300 Subject: move label stuff to Labels class fix some unresolved functions --- plugins/note/init.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/note/init.php') diff --git a/plugins/note/init.php b/plugins/note/init.php index dd372ce5e..65cdf30e4 100644 --- a/plugins/note/init.php +++ b/plugins/note/init.php @@ -62,7 +62,7 @@ class Note extends Plugin { db_query("UPDATE ttrss_user_entries SET note = '$note' WHERE ref_id = '$id' AND owner_uid = " . $_SESSION["uid"]); - $formatted_note = format_article_note($id, $note); + $formatted_note = Article::format_article_note($id, $note); print json_encode(array("note" => $formatted_note, "raw_length" => mb_strlen($note))); -- cgit v1.2.3-54-g00ecf