diff --git a/modules/cms/classes/ComponentManager.php b/modules/cms/classes/ComponentManager.php index 5402b07b5..bf26747bd 100644 --- a/modules/cms/classes/ComponentManager.php +++ b/modules/cms/classes/ComponentManager.php @@ -198,14 +198,14 @@ class ComponentManager $className = $this->resolve($name); if (!$className) { throw new SystemException(sprintf( - 'Class name is not registered for the component %s. Check the component plugin.', + 'Class name is not registered for the component "%s". Check the component plugin.', $name )); } if (!class_exists($className)) { throw new SystemException(sprintf( - 'Component class not found %s. Check the component plugin.', + 'Component class not found "%s". Check the component plugin.', $className )); }