From 48dff31a9fabc6db793b15ea43bf5b173b8d4c01 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Wed, 27 May 2015 03:30:27 +0200 Subject: [PATCH] Updated to latest 'core' + convertToClassName() and convertDashesToUnderscores() are now static. Signed-off-by: Roland Haeder --- application/admin/class_ApplicationHelper.php | 4 ++-- core | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/application/admin/class_ApplicationHelper.php b/application/admin/class_ApplicationHelper.php index fc8c657..87767f1 100644 --- a/application/admin/class_ApplicationHelper.php +++ b/application/admin/class_ApplicationHelper.php @@ -193,7 +193,7 @@ class ApplicationHelper extends BaseApplication implements ManageableApplication } // END - if // ... and a new response object - $responseClass = sprintf('%sResponse', $this->convertToClassName($response)); + $responseClass = sprintf('%sResponse', self::convertToClassName($response)); $responseInstance = ObjectFactory::createObjectByName($responseClass, array($this)); // Remember response instance here @@ -212,7 +212,7 @@ class ApplicationHelper extends BaseApplication implements ManageableApplication } // END - if // Get a controller resolver - $resolverClass = $this->convertToClassName($this->getAppShortName() . '_' . $responseType . '_controller_resolver'); + $resolverClass = self::convertToClassName($this->getAppShortName() . '_' . $responseType . '_controller_resolver'); $resolverInstance = ObjectFactory::createObjectByName($resolverClass, array($commandName, $this)); // Get a controller instance as well diff --git a/core b/core index fd0314e..2b6327b 160000 --- a/core +++ b/core @@ -1 +1 @@ -Subproject commit fd0314ec6209175eff537c5358fc67484618f672 +Subproject commit 2b6327b96c604709e7b244b0171b753a13f7d270 -- 2.39.2