lperera: Fixed error message - Convert::raw2html is deprecated. (merged from branches/gsoc)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@41701 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2007-09-14 01:21:37 +00:00
parent 0d80ed0e7b
commit d9b0843281

View File

@ -281,7 +281,7 @@ class Convert extends Object {
* @return the HTML version of the string
*/
static function raw2html($val) {
user_error("Convert::raw2xml is deprecated. Used Convert::raw2xml instead", E_USER_WARNING);
user_error("Convert::raw2html is deprecated. Used Convert::raw2xml instead", E_USER_WARNING);
return self::raw2xml($val);
}