From d9b08432812f9bde9041df0b306340ec4aa9c802 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Fri, 14 Sep 2007 01:21:37 +0000 Subject: [PATCH] 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 --- core/Convert.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Convert.php b/core/Convert.php index ab98ad169..7530cbd53 100755 --- a/core/Convert.php +++ b/core/Convert.php @@ -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); }