Skip to content

Commit

Permalink
Merge pull request #6 from drapier/patch-1
Browse files Browse the repository at this point in the history
Fixing incorrect siteid variable when setting cacheFactories
  • Loading branch information
stevewithington committed Mar 10, 2015
2 parents 1063aac + 5bb9615 commit 97c2eb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/eventHandler.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ component extends="mura.plugin.pluginGenericEventHandler" output="false"
output=createCacheFactory(name='output',siteid=rs.siteid[i])
};

siteManager.getSite(rs.siteid).setCacheFactories(cacheStruct);
siteManager.getSite(rs.siteid[i]).setCacheFactories(cacheStruct);
}
}

Expand Down

0 comments on commit 97c2eb4

Please sign in to comment.