diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-01-17 21:12:20 +0000 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-01-17 21:12:20 +0000 |
commit | 3ce45acfa8488a050cf7d68c8e980166f56c5d43 (patch) | |
tree | 442e4fe3afc7f140986d753aec2a6f5f7c790665 /lib | |
parent | e019a55a83b70684f629bcd179ec938d735b4a57 (diff) | |
parent | 91475ca33f27be5116268415d80513bba6cfbd13 (diff) |
Merge branch 'uiredesign' of /var/www/trunk into uiredesign
Diffstat (limited to 'lib')
-rw-r--r-- | lib/favorform.php | 4 | ||||
-rw-r--r-- | lib/htmloutputter.php | 5 | ||||
-rw-r--r-- | lib/noticelist.php | 4 |
3 files changed, 7 insertions, 6 deletions
diff --git a/lib/favorform.php b/lib/favorform.php index 977f19183..37e13fb1c 100644 --- a/lib/favorform.php +++ b/lib/favorform.php @@ -111,7 +111,7 @@ class FavorForm extends Form */ function formLegend() { - $this->out->element('legend', null, _('Delete this notice')); + $this->out->element('legend', null, _('Favor this notice')); } @@ -137,7 +137,7 @@ class FavorForm extends Form function formActions() { $this->out->submit('favor-submit-' . $this->notice->id, - _('Favorite')); + _('Favor'), 'submit', null, _('Favor this notice')); } /** diff --git a/lib/htmloutputter.php b/lib/htmloutputter.php index 71f17604b..1e164933c 100644 --- a/lib/htmloutputter.php +++ b/lib/htmloutputter.php @@ -313,13 +313,14 @@ class HTMLOutputter extends XMLOutputter * @todo add a $name parameter */ - function submit($id, $label, $cls='submit', $name=null) + function submit($id, $label, $cls='submit', $name=null, $title=null) { $this->element('input', array('type' => 'submit', 'id' => $id, 'name' => ($name) ? $name : $id, 'class' => $cls, - 'value' => $label)); + 'value' => $label, + 'title' => $title)); } /** diff --git a/lib/noticelist.php b/lib/noticelist.php index 1283e43e4..9c433f81a 100644 --- a/lib/noticelist.php +++ b/lib/noticelist.php @@ -442,7 +442,7 @@ class NoticeListItem extends Widget $this->out->element('dt', null, _('Reply to this notice')); $this->out->elementStart('dd'); $this->out->element('a', array('href' => $reply_url, - 'title' => _('reply')), _('Reply')); + 'title' => _('Reply to this notice')), _('Reply')); $this->out->elementEnd('dd'); $this->out->elementEnd('dl'); } @@ -463,7 +463,7 @@ class NoticeListItem extends Widget $this->out->element('dt', null, _('Delete this notice')); $this->out->elementStart('dd'); $this->out->element('a', array('href' => $deleteurl, - 'title' => _('delete')), _('Delete')); + 'title' => _('Delete this notice')), _('Delete')); $this->out->elementEnd('dd'); $this->out->elementEnd('dl'); } |