diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-17 15:40:03 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-17 15:40:03 -0400 |
commit | 8c98caef57ac6eb31888d67632114662851d9ecb (patch) | |
tree | 03284ba647e0d2e8607c3c26be491b614e8833c6 | |
parent | f94352ec2617757d692de49cf78cbdf890df200e (diff) |
fix button on newnotice
darcs-hash:20080517194003-84dde-fb9334c5cfa7654d09b770132d284d5fa8d7b4ca.gz
-rw-r--r-- | actions/newnotice.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/newnotice.php b/actions/newnotice.php index e20932b55..ff5b7ccd3 100644 --- a/actions/newnotice.php +++ b/actions/newnotice.php @@ -58,7 +58,7 @@ class NewnoticeAction extends Action { 'action' => common_local_url('newnotice'))); common_element('span', 'nickname', $profile->nickname); common_element('textarea', array('rows' => 4, 'cols' => 80, 'id' => 'content')); - common_element('input', array('type' => 'submit'), 'Send'); + common_element('input', array('type' => 'submit', 'value' => 'Send')); common_element_end('form'); } }
\ No newline at end of file |