summaryrefslogtreecommitdiff
path: root/actions/showstream.php
diff options
context:
space:
mode:
Diffstat (limited to 'actions/showstream.php')
-rw-r--r--actions/showstream.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/actions/showstream.php b/actions/showstream.php
index 42f1f04cd..bf9df04a3 100644
--- a/actions/showstream.php
+++ b/actions/showstream.php
@@ -136,7 +136,9 @@ class ShowstreamAction extends StreamAction {
'name' => 'subscribeto',
'type' => 'hidden',
'value' => $profile->nickname));
- common_element('input', array('type' => 'submit', 'value' => _t('Subscribe')));
+ common_element('input', array('type' => 'submit',
+ 'class' => 'button',
+ 'value' => _t('Subscribe')));
common_element_end('form');
}
@@ -147,7 +149,9 @@ class ShowstreamAction extends StreamAction {
'name' => 'unsubscribeto',
'type' => 'hidden',
'value' => $profile->nickname));
- common_element('input', array('type' => 'submit'), _t('Unsubscribe'));
+ common_element('input', array('type' => 'submit',
+ 'class' => 'button',
+ 'value' => _t('Unsubscribe')));
common_element_end('form');
}