* code for task#1227.

This commit is contained in:
chencongzhi520@gmail.com
2013-05-03 06:11:00 +00:00
parent 4f88d135aa
commit bd9ae47e24
2 changed files with 5 additions and 5 deletions

View File

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