diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-12-23 14:08:51 -0500 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-12-23 14:08:51 -0500 |
commit | 20af1927967592e56189f48d88d82fad989870ca (patch) | |
tree | 152b411c661440e186c0fa3b6a0cf19d4a56437d /actions/showstream.php | |
parent | ba31059fef3f609673178c7a041c397540da1789 (diff) |
bring lib/noticelist.php into line with PEAR code standards
darcs-hash:20081223190851-84dde-ecad63595159aca2ae014325c9af29a9ace21c3d.gz
Diffstat (limited to 'actions/showstream.php')
-rw-r--r-- | actions/showstream.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/showstream.php b/actions/showstream.php index 6d6225661..61fdec3fe 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -438,13 +438,13 @@ class ShowstreamAction extends StreamAction { # We don't show the author for a profile, since we already know who it is! class ProfileNoticeList extends NoticeList { - function new_list_item($notice) { + function newListItem($notice) { return new ProfileNoticeListItem($notice); } } class ProfileNoticeListItem extends NoticeListItem { - function show_author() { + function showAuthor() { return; } } |