Revision: 195
http://sourceforge.net/p/beeframework/code/195
Author: m_plomer
Date: 2014-07-27 11:59:43 +0000 (Sun, 27 Jul 2014)
Log Message:
-----------
- MVC: fixed bug in default method invocation of AnnotationBasedInvocator
Modified Paths:
--------------
trunk/framework/Bee/MVC/Controller/Multiaction/HandlerMethodInvocator/AnnotationBasedInvocator.php
Modified: trunk/framework/Bee/MVC/Controller/Multiaction/HandlerMethodInvocator/AnnotationBasedInvocator.php
===================================================================
--- trunk/framework/Bee/MVC/Controller/Multiaction/HandlerMethodInvocator/AnnotationBasedInvocator.php 2014-07-26 16:33:43 UTC (rev 194)
+++ trunk/framework/Bee/MVC/Controller/Multiaction/HandlerMethodInvocator/AnnotationBasedInvocator.php 2014-07-27 11:59:43 UTC (rev 195)
@@ -64,7 +64,7 @@
}
if (!$this->defaultMethodInvocation) {
- $methodMeta = RegexMappingInvocationResolver::getCachedMethodMetadata(new \ReflectionMethod($delegateClassName, $ctrl->getDefaultMethodName()));
+ $methodMeta = RegexMappingInvocationResolver::getCachedMethodMetadata(new \ReflectionMethod($delegateClassName, $ctrl->getDefaultMethodName()), $this->getPropertyEditorRegistry());
$this->defaultMethodInvocation = new MethodInvocation($methodMeta);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|