From f7b3d2b76272b45304b31aec3af0759a152b1b43 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Fri, 29 Nov 2013 11:10:22 +0200 Subject: [PATCH] cleanup --- application/Espo/Core/Controllers/Base.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/application/Espo/Core/Controllers/Base.php b/application/Espo/Core/Controllers/Base.php index fb950b8203..9a141f6b9a 100644 --- a/application/Espo/Core/Controllers/Base.php +++ b/application/Espo/Core/Controllers/Base.php @@ -28,10 +28,7 @@ abstract class Base if (preg_match('@\\\\([\w]+)$@', $name, $matches)) { $name = $matches[1]; } - $this->name = $name; - - //echo $this->name; - //die; + $this->name = $name; if (empty($this->serviceClassName)) { $moduleName = $this->getMetadata()->getScopeModuleName($this->name);