Skip to content

Instantly share code, notes, and snippets.

@chrisdpeters
Created February 11, 2012 02:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrisdpeters/1795585 to your computer and use it in GitHub Desktop.
Save chrisdpeters/1795585 to your computer and use it in GitHub Desktop.
Add to the Flash with redirectTo() in CFWheels 1.1
<!--- In the controller --->
<cfif toilet.flush()>
<cfset redirectTo(action="lockerRoom", success="Whoooooooosh!")>
</cfif>
<!--- In the controller --->
<cfif toilet.flush()>
<cfset flashInsert(success="Whoooooooosh!")>
<cfset redirectTo(action="lockerRoom")>
</cfif>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment