I got the error message Undefined property: Minz_View::$rss_title
when opening the view of extension
#354
Answered
by
Inverle
reply2future
asked this question in
Q&A
-
versionfreshrss: 1.27.0, docker image from issue![]() what I did in this page: class NewsAssistantExtension extends Minz_Extension
{
public function init()
{
parent::init();
$this->registerController('assistant');
$this->registerViews();
$this->registerTranslates();
$this->registerHook('nav_menu', array($this, 'addSummaryBtn'));
}
# ...
} logs
Thank you for any help. |
Beta Was this translation helpful? Give feedback.
Answered by
Inverle
Aug 26, 2025
Replies: 2 comments
-
Do this diff --git a/Controllers/assistantController.php b/Controllers/assistantController.php
index e4f6766..86a4827 100644
--- a/Controllers/assistantController.php
+++ b/Controllers/assistantController.php
@@ -2,7 +2,7 @@
require(dirname(__DIR__) . '/helper.php');
-class FreshExtension_assistant_Controller extends Minz_ActionController
+class FreshExtension_assistant_Controller extends FreshRSS_ActionController
{
const NEWS_CATEGORY_TYPE = 'c';
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Alkarex
-
Thank you so much! It works perfectly right now :) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Do this