summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--actions/showstream.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/showstream.php b/actions/showstream.php
index c9b35ee0b..81f5a3db3 100644
--- a/actions/showstream.php
+++ b/actions/showstream.php
@@ -59,7 +59,7 @@ class ShowstreamAction extends StreamAction {
$this->show_last_notice($profile);
- if ($cur) {
+ if ($cur && $cur->id != $profile->id) {
if ($cur->isSubscribed($profile)) {
$this->show_unsubscribe_form($profile);
} else {
@@ -125,7 +125,7 @@ class ShowstreamAction extends StreamAction {
'name' => 'subscribeto',
'type' => 'hidden',
'value' => $profile->nickname));
- common_element('input', array('type' => 'submit'), _t('subscribe'));
+ common_element('input', array('type' => 'submit', 'value' => _t('Subscribe')));
common_element_end('form');
}