From b791a835929c659d8dcf174553f7786fb45cf978 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 21 May 2008 14:56:02 -0400 Subject: fix subscriptions a bit darcs-hash:20080521185602-84dde-9e058c34c251d96cf557c1dd459523aa434bed79.gz --- actions/showstream.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'actions/showstream.php') 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'); } -- cgit v1.2.3-54-g00ecf