diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-21 14:56:02 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-21 14:56:02 -0400 |
commit | b791a835929c659d8dcf174553f7786fb45cf978 (patch) | |
tree | 7000715f987b456d401791898b615bb4f3b97c8d /actions/showstream.php | |
parent | 5172a73e28eb2150967f466341ac1e0f7725d896 (diff) |
fix subscriptions a bit
darcs-hash:20080521185602-84dde-9e058c34c251d96cf557c1dd459523aa434bed79.gz
Diffstat (limited to 'actions/showstream.php')
-rw-r--r-- | actions/showstream.php | 8 |
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'); } |