diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-09-08 14:35:15 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-09-08 14:35:15 -0400 |
commit | 0075f1136f13a851bff464742baa4de0d8b80c69 (patch) | |
tree | 205c76f6d34550ec1cae7d27570eebfed7d3924d /lib | |
parent | dd4c0ebaa8717012e8bae58088c1a2760152bc41 (diff) |
better styling for favor/disfavor buttons
darcs-hash:20080908183515-84dde-7630e2185aa2f0a4e95e3eb8502294361d9879e5.gz
Diffstat (limited to 'lib')
-rw-r--r-- | lib/util.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/util.php b/lib/util.php index 2da767a04..7e49dd8bd 100644 --- a/lib/util.php +++ b/lib/util.php @@ -431,13 +431,13 @@ function common_password($id, $label, $instructions=NULL) { common_element_end('p'); } -function common_submit($id, $label) { +function common_submit($id, $label, $cls='submit') { global $xw; common_element_start('p'); common_element('input', array('type' => 'submit', 'id' => $id, 'name' => $id, - 'class' => 'submit', + 'class' => $cls, 'value' => $label)); common_element_end('p'); } @@ -1553,7 +1553,7 @@ function common_disfavor_form($notice) { 'action' => common_local_url('disfavor'))); common_hidden('token', common_session_token()); common_hidden('notice', $notice->id); - common_submit('disfavor-submit-' . $notice->id, '♥'); + common_submit('disfavor-submit-' . $notice->id, '♥', 'disfavor'); common_element_end('form'); } @@ -1563,7 +1563,7 @@ function common_favor_form($notice) { 'action' => common_local_url('favor'))); common_hidden('token', common_session_token()); common_hidden('notice', $notice->id); - common_submit('favor-submit-' . $notice->id, '♡'); + common_submit('favor-submit-' . $notice->id, '♡', 'favor'); common_element_end('form'); } |