File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ component
202
202
203
203
// Rendering Region call?
204
204
if ( ! isNull ( arguments .name ) and len ( arguments .name ) ) {
205
- arguments = incorporateRenderingRegion ( arguments .name , arguments );
205
+ arguments = incorporateRenderingRegion ( arguments .name , event , arguments );
206
206
}
207
207
208
208
// Rendering an explicit view or do we need to get the view from the context or explicit context?
@@ -977,14 +977,15 @@ component
977
977
/**
978
978
* Incorporate a rendering region into the arguments struct
979
979
*
980
- * @name The name of the rendering region
981
- * @args The arguments struct to incorporate the rendering region into
980
+ * @name The name of the rendering region
981
+ * @event The request context
982
+ * @args The arguments struct to incorporate the rendering region into
982
983
*
983
984
* @return The arguments processed
984
985
*
985
986
* @throws InvalidRenderingRegion - If the region name does not exist
986
987
*/
987
- private function incorporateRenderingRegion ( required name , any args ){
988
+ private function incorporateRenderingRegion ( required name , required event , any args ){
988
989
var regions = event .getRenderingRegions ();
989
990
// Verify Region
990
991
if ( ! structKeyExists ( regions , arguments .name ) ) {
You can’t perform that action at this time.
0 commit comments