From 37350e873d7d0d3350c4286a0c7d028ffe49825a Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 15 Jan 2009 20:22:14 +0000 Subject: Make the feedlist work -- kinda --- lib/feedlist.php | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'lib/feedlist.php') diff --git a/lib/feedlist.php b/lib/feedlist.php index 0ff88cb25..9bc77ca15 100644 --- a/lib/feedlist.php +++ b/lib/feedlist.php @@ -47,13 +47,14 @@ if (!defined('LACONICA')) { * @see Action::showExportList() */ -class FeedList +class FeedList extends Widget { - var $out = null; - - function __construct($out=null) + var $action = null; + + function __construct($action=null) { - $this->out = $out; + parent::__construct($action); + $this->action = $action; } function show($feeds) @@ -72,7 +73,7 @@ class FeedList function feedItem($feed) { - $nickname = $this->trimmed('nickname'); + $nickname = $this->action->trimmed('nickname'); switch($feed['item']) { case 'notices': default: -- cgit v1.2.3-54-g00ecf