diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-06-10 15:42:43 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-06-10 15:42:43 -0400 |
commit | 36894e6a7f804da280c0eacaa3c86d29225e6e2f (patch) | |
tree | dc0776601a764cb4b1dc5d93b0460c33619959f7 | |
parent | 2c95246fcdc3aca299448649654063b3a77e4fe1 (diff) |
change class of notice textarea to its id
darcs-hash:20080610194243-84dde-dad19548b794cc3d6d549e986bf17aa6b0421199.gz
-rw-r--r-- | lib/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php index b9c0bc93b..e44343887 100644 --- a/lib/util.php +++ b/lib/util.php @@ -595,7 +595,7 @@ function common_notice_form() { common_element('label', array('for' => 'status_update', 'id' => 'status_label'), _t('What\'s up, ').$user->nickname.'?'); - common_element('textarea', 'status_textarea'); + common_element('textarea', array('id' => 'status_textarea')); common_element('input', array('id' => 'status_submit', 'type' => 'submit', 'value' => _t('Send'))); |