From a7be30857a58f04abe585337076796fb363d481b Mon Sep 17 00:00:00 2001
From: Brion Vibber <brion@pobox.com>
Date: Fri, 20 Nov 2009 14:52:29 -0800
Subject: [PATCH] Fix bug 1997: notice search rss utter failure

Since commit c4072ef7c930b82b74f8e90f6554974b761c686c in March there's no longer an automatic run of $this->getNotices() from RssAction parent class; added to the subclass.

It might make sense to put it back in the parent class, but of course only if those dupe calls can be resolved.
---
 actions/noticesearchrss.php | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/actions/noticesearchrss.php b/actions/noticesearchrss.php
index 18f07f8558..a59e7b99be 100644
--- a/actions/noticesearchrss.php
+++ b/actions/noticesearchrss.php
@@ -53,6 +53,13 @@ class NoticesearchrssAction extends Rss10Action
     {
         return true;
     }
+    
+    function prepare($args)
+    {
+        parent::prepare($args);
+        $this->notices = $this->getNotices();
+        return true;
+    }
 
     function getNotices($limit=0)
     {
-- 
2.39.5