summaryrefslogtreecommitdiff
path: root/actions/showstream.php
diff options
context:
space:
mode:
authorsarven <csarven@plantard.controlezvous.ca>2009-01-24 03:45:44 +0000
committersarven <csarven@plantard.controlezvous.ca>2009-01-24 03:45:44 +0000
commit8e4f985e4502a14d66f84f9e5c8d4a54bb8e5594 (patch)
treed88fb2062b616799f3610c3f925fe0089a71481b /actions/showstream.php
parent08030196ca2c0ff51ac0edd420f0e8046e676623 (diff)
Minor
Diffstat (limited to 'actions/showstream.php')
-rw-r--r--actions/showstream.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/actions/showstream.php b/actions/showstream.php
index c1ef8ba52..eab1fc0a2 100644
--- a/actions/showstream.php
+++ b/actions/showstream.php
@@ -316,7 +316,7 @@ class ShowstreamAction extends Action
$this->elementStart('div', 'entity_actions');
$this->element('h2', null, _('User actions'));
$this->elementStart('ul');
- $this->elementStart('li', array('id' => 'entity_subscribe'));
+ $this->elementStart('li', array('class' => 'entity_subscribe'));
$cur = common_current_user();
if ($cur) {
if ($cur->id != $this->profile->id) {
@@ -337,14 +337,14 @@ class ShowstreamAction extends Action
$user = User::staticGet('id', $this->profile->id);
if ($cur && $cur->id != $user->id && $cur->mutuallySubscribed($user)) {
- $this->elementStart('li', array('id' => 'entity_send-a-message'));
+ $this->elementStart('li', array('class' => 'entity_send-a-message'));
$this->element('a', array('href' => common_local_url('newmessage', array('to' => $user->id)),
'title' => _('Send a direct message to this user')),
_('Message'));
$this->elementEnd('li');
if ($user->email && $user->emailnotifynudge) {
- $this->elementStart('li', array('id' => 'entity_nudge'));
+ $this->elementStart('li', array('class' => 'entity_nudge'));
$nf = new NudgeForm($this, $user);
$nf->show();
$this->elementEnd('li');
@@ -353,7 +353,7 @@ class ShowstreamAction extends Action
if ($cur && $cur->id != $this->profile->id) {
$blocked = $cur->hasBlocked($this->profile);
- $this->elementStart('li', array('id' => 'entity_block'));
+ $this->elementStart('li', array('class' => 'entity_block'));
if ($blocked) {
$ubf = new UnblockForm($this, $this->profile);
$ubf->show();