diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-06-18 12:35:16 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-06-18 12:35:16 -0400 |
commit | d4341f03c27b59695d4b2829e1d328c2af0475eb (patch) | |
tree | 669b1be50b8bc35bbb3b3d88cf406d9424f7f07b /actions/showstream.php | |
parent | d9b7f0b7065ab94bb567e0b2cbb0699ace1a6f9f (diff) |
add submit class to all buttons
darcs-hash:20080618163516-84dde-ab4d9daa4180d75da0813bed03f6c824577a87a0.gz
Diffstat (limited to 'actions/showstream.php')
-rw-r--r-- | actions/showstream.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actions/showstream.php b/actions/showstream.php index a9073df86..49a44b274 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -164,7 +164,7 @@ class ShowstreamAction extends StreamAction { 'type' => 'hidden', 'value' => $profile->nickname)); common_element('input', array('type' => 'submit', - 'class' => 'button', + 'class' => 'submit', 'value' => _t('Subscribe'))); common_element_end('form'); } @@ -182,7 +182,7 @@ class ShowstreamAction extends StreamAction { 'id' => 'submit', 'name' => 'submit', 'value' => _t('Subscribe'), - 'class' => 'button')); + 'class' => 'submit')); common_element_end('form'); } @@ -194,7 +194,7 @@ class ShowstreamAction extends StreamAction { 'type' => 'hidden', 'value' => $profile->nickname)); common_element('input', array('type' => 'submit', - 'class' => 'button', + 'class' => 'submit', 'value' => _t('Unsubscribe'))); common_element_end('form'); } |