diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-09-08 16:22:26 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-09-08 16:22:26 -0400 |
commit | b4db40ce1df43adcf4c29c0d96b940100581cf75 (patch) | |
tree | e87c86ca03f74ae7b22ea0b6386281416959c3d6 /lib/util.php | |
parent | 9dafde2c9f14f445399226de15b694d4e45deb79 (diff) |
write our own submit so there's no <p>
darcs-hash:20080908202226-84dde-bf0bf0d67f1f9a9e4cf70bc20fb12b4ca736b594.gz
Diffstat (limited to 'lib/util.php')
-rw-r--r-- | lib/util.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/lib/util.php b/lib/util.php index 8a1f9e008..659c8387c 100644 --- a/lib/util.php +++ b/lib/util.php @@ -1554,7 +1554,11 @@ 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, '♥', 'disfavor'); + common_element('input', array('type' => 'submit', + 'id' => 'disfavor-submit-' . $notice->id, + 'name' => 'disfavor-submit-' . $notice->id, + 'class' => 'disfavor', + 'value' => '♥')); common_element_end('form'); } @@ -1565,7 +1569,11 @@ 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, '♡', 'favor'); + common_element('input', array('type' => 'submit', + 'id' => 'favor-submit-' . $notice->id, + 'name' => 'favor-submit-' . $notice->id, + 'class' => 'favor', + 'value' => '♡')); common_element_end('form'); } |