* add back button for todo-batchcreate.

This commit is contained in:
wangyidong
2013-06-20 09:01:09 +00:00
parent efa8eeb3b9
commit 093283d405
2 changed files with 9 additions and 3 deletions

View File

@@ -441,10 +441,10 @@ EOT;
* @access public
* @return string the back button tag.
*/
public static function backButton()
public static function backButton($misc = '')
{
global $lang;
return "<input type='button' onClick='javascript:history.go(-1);' value='{$lang->goback}' class='button-b'/>";
return "<input type='button' onClick='javascript:history.go(-1);' value='{$lang->goback}' class='button-b' $misc/>";
}
/**