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
This commit is contained in:
Sam Minnee 2009-06-28 02:49:37 +00:00
parent 5fd8cfd81d
commit 4854dddc0d

View File

@ -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);
}
}