prepare and handle function to match parents

This commit is contained in:
Mikael Nordfeldth 2015-07-07 19:34:42 +02:00
parent edef6f929a
commit acdcb2ad8d
2 changed files with 5 additions and 5 deletions

View File

@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
if (!defined('GNUSOCIAL')) { exit(1); }
require_once(INSTALLDIR.'/lib/rssaction.php');
@ -27,7 +27,7 @@ class UserrssAction extends Rss10Action
{
var $tag = null;
function prepare($args)
protected function prepare(array $args=array())
{
parent::prepare($args);
$nickname = $this->trimmed('nickname');

View File

@ -75,7 +75,7 @@ class Rss10Action extends Action
* @return boolean success
*/
function prepare($args)
protected function prepare(array $args=array())
{
parent::prepare($args);
@ -120,10 +120,10 @@ class Rss10Action extends Action
* @return void
*/
function handle($args)
protected function handle()
{
// Parent handling, including cache check
parent::handle($args);
parent::handle();
$this->showRss();
}