From 91475ca33f27be5116268415d80513bba6cfbd13 Mon Sep 17 00:00:00 2001
From: sarven <csarven@plantard.controlezvous.ca>
Date: Sat, 17 Jan 2009 21:09:42 +0000
Subject: [PATCH] Update. Added separate $title param for input submit

---
 lib/favorform.php     | 2 +-
 lib/htmloutputter.php | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/favorform.php b/lib/favorform.php
index 519b305b6f..37e13fb1c5 100644
--- a/lib/favorform.php
+++ b/lib/favorform.php
@@ -137,7 +137,7 @@ class FavorForm extends Form
     function formActions()
     {
         $this->out->submit('favor-submit-' . $this->notice->id,
-                           _('Favor this notice'));
+                           _('Favor'), 'submit', null, _('Favor this notice'));
     }
     
     /**
diff --git a/lib/htmloutputter.php b/lib/htmloutputter.php
index f83998bc27..1e164933ce 100644
--- a/lib/htmloutputter.php
+++ b/lib/htmloutputter.php
@@ -313,14 +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,
-                                      'title' => $label));
+                                      'title' => $title));
     }
 
     /**
-- 
2.39.5