From 4854dddc0df29f0ffe882d6d89799a59e80d030b Mon Sep 17 00:00:00 2001 From: Sam Minnee Date: Sun, 28 Jun 2009 02:49:37 +0000 Subject: [PATCH] MINOR #4227: Fixed typo in error message in CMSBatchActionHandler git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@80251 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- code/CMSBatchActionHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/CMSBatchActionHandler.php b/code/CMSBatchActionHandler.php index 22b27f2a..75bb9a75 100644 --- a/code/CMSBatchActionHandler.php +++ b/code/CMSBatchActionHandler.php @@ -32,7 +32,7 @@ class CMSBatchActionHandler extends RequestHandler { if(is_subclass_of($batchActionClass, 'CMSBatchAction')) { self::$batch_actions[$urlSegment] = $batchActionClass; } else { - user_error("CMSBatchActionHandler::regiser() - Bad class '$batchActionClass'", E_USER_ERROR); + user_error("CMSBatchActionHandler::register() - Bad class '$batchActionClass'", E_USER_ERROR); } }