Created
January 17, 2020 12:07
-
-
Save robertmorel-uk/35d87d02285cd1578955d22af95ef6ec to your computer and use it in GitHub Desktop.
Mura - if param exists in url
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfif structKeyExists(url, 'subject')> | |
<div class="form-group"> | |
<input type="hidden" class="form-control" id="Subject" name="subject" value="#URL.subject#"> | |
</div> | |
<cfelse> | |
<div class="form-group"> | |
<input type="hidden" class="form-control" id="Subject" name="subject" value="Not specified"> | |
</div> | |
</cfif> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment