From ffd8abea5628a846414eb1eb1aed9c3187704faf Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Wed, 27 May 2015 03:35:03 +0200 Subject: [PATCH] Updated to latest 'core' + convertToClassName() and convertDashesToUnderscores() are now static. Signed-off-by: Roland Haeder --- application/install/class_ApplicationHelper.php | 4 ++-- core | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/application/install/class_ApplicationHelper.php b/application/install/class_ApplicationHelper.php index f77ca74..0fb394c 100644 --- a/application/install/class_ApplicationHelper.php +++ b/application/install/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..1f81d21 160000 --- a/core +++ b/core @@ -1 +1 @@ -Subproject commit fd0314ec6209175eff537c5358fc67484618f672 +Subproject commit 1f81d21b97669832b84da3680d046eb9e4afba64 -- 2.39.5