* change the reviewedDate.

This commit is contained in:
wangchunsheng
2010-02-10 08:22:05 +00:00
parent 2c2cbad546
commit c1cb004c22
3 changed files with 14 additions and 4 deletions
+2 -2
View File
@@ -232,14 +232,14 @@ class html
* @access public
* @return string the submit button tag.
*/
public static function submitButton($label = '')
public static function submitButton($label = '', $misc = '')
{
if(empty($label))
{
global $lang;
$label = $lang->save;
}
return " <input type='submit' id='submit' value='$label' class='button-s' /> ";
return " <input type='submit' id='submit' value='$label' class='button-s' $misc /> ";
}
/**