Skip to content

Commit

Permalink
fixes issue 671
Browse files Browse the repository at this point in the history
small correction to $callActionAndAddToCache
changed cache argument to action
  • Loading branch information
rip747 committed Feb 28, 2011
1 parent 943a3fd commit 79125ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wheels/controller/processing.cfm
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
<cfscript>
$callAction(action=arguments.action);
if (arguments.static)
$cache(cache="serverCache", timeSpan=$timeSpanForCache(arguments.time, "main"));
$cache(action="serverCache", timeSpan=$timeSpanForCache(arguments.time, "main"));
else
$addToCache(key=arguments.key, value=variables.$instance.response, time=arguments.time, category=arguments.category);
</cfscript>
Expand Down

0 comments on commit 79125ae

Please sign in to comment.