CC setting is now an admin option. Original patch provided by Rouslan Placella. (feature request #0001259)
2 <!-- profiles/contactuserform.thtml { -->
4 <form action="{site_url}/profiles.php" method="post" id="contactuserform" class="compact">
6 <div class="user_basic">
7 <p class="message">{lang_description}</p>
10 <dt><label for="contactuserform-author">{lang_username}</label></dt>
11 <dd><input type="text" size="32" value="{username}" maxlength="32" name="author" id="contactuserform-author" class="text"{xhtml}></dd>
13 <dt><label for="contactuserform-authoremail">{lang_useremail}</label></dt>
14 <dd><input type="text" size="32" value="{useremail}" maxlength="96" name="authoremail" id="contactuserform-authoremail" class="text"{xhtml}></dd>
16 <dt><label for="contactuserform-subject">{lang_subject}</label></dt>
17 <dd><input type="text" size="32" maxlength="96" value="{subject}" name="subject" id="contactuserform-subject" class="text"{xhtml}></dd>
19 <dt><label for="contactuserform-message">{lang_message}</label></dt>
20 <dd><textarea rows="10" cols="50" name="message" id="contactuserform-message">{message}</textarea></dd>
22 <dt{cc_enabled}><label for="contactuserform-cc">{lang_cc}</label></dt>
23 <dd{cc_enabled}><input type="checkbox" name="cc" id="contactuserform-cc"{cc}{xhtml}> {lang_cc_description}</dd>
25 <dd class="description">{lang_nohtml}</dd>
32 <input type="hidden" name="what" value="contact"{xhtml}>
33 <input type="hidden" name="uid" value="{uid}"{xhtml}>
34 <input type="submit" value="{lang_submit}" onclick="return postconfirm();" onkeypress="return postconfirm();" class="submit"{xhtml}>
40 <!-- } profiles/contactuserform.thtml-->