summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-12-11 18:30:39 -0500
committerEvan Prodromou <evan@prodromou.name>2008-12-11 18:30:39 -0500
commit677a05ff1ec790ef1f6a3ebd4bc8c4a0fa342464 (patch)
tree0df0052e0ad6855cd46e8710ee317c46f8cc0015
parentb1838f14b69bc24f30d8e7e66e01ae6b11d714e1 (diff)
$profile -> $this->profile in noticelistitem
darcs-hash:20081211233039-84dde-9bcacf8f114025052a208e1068e58d570db05f15.gz
-rw-r--r--lib/noticelist.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/noticelist.php b/lib/noticelist.php
index e05f845de..8c106208b 100644
--- a/lib/noticelist.php
+++ b/lib/noticelist.php
@@ -104,22 +104,22 @@ class NoticeListItem {
}
function show_avatar() {
- $avatar = $profile->getAvatar(AVATAR_STREAM_SIZE);
- common_element_start('a', array('href' => $profile->profileurl));
+ $avatar = $this->profile->getAvatar(AVATAR_STREAM_SIZE);
+ common_element_start('a', array('href' => $this->profile->profileurl));
common_element('img', array('src' => ($avatar) ? common_avatar_display_url($avatar) : common_default_avatar(AVATAR_STREAM_SIZE),
'class' => 'avatar stream photo',
'width' => AVATAR_STREAM_SIZE,
'height' => AVATAR_STREAM_SIZE,
'alt' =>
- ($profile->fullname) ? $profile->fullname :
- $profile->nickname));
+ ($this->profile->fullname) ? $this->profile->fullname :
+ $this->profile->nickname));
common_element_end('a');
}
function show_nickname() {
- common_element('a', array('href' => $profile->profileurl,
+ common_element('a', array('href' => $this->profile->profileurl,
'class' => 'nickname fn url'),
- $profile->nickname);
+ $this->profile->nickname);
}
function show_content() {
@@ -194,8 +194,8 @@ class NoticeListItem {
function show_reply_link() {
common_element_start('a',
array('href' => common_local_url('newnotice',
- array('replyto' => $profile->nickname)),
- 'onclick' => 'return doreply("'.$profile->nickname.'", '.$this->notice->id.');',
+ array('replyto' => $this->profile->nickname)),
+ 'onclick' => 'return doreply("'.$this->profile->nickname.'", '.$this->notice->id.');',
'title' => _('reply'),
'class' => 'replybutton'));
common_raw('&rarr;');