in "send a message" > "format" tab to have "HTML" checked by default instead of "text and HTML" :
file send_core.php :
line 75
- Code: Select all
Sql_Query(sprintf('insert into %s (subject,status,entered,sendformat,embargo,repeatuntil,owner,template,tofield,replyto)
values("(no subject)","draft",now(),"text and HTML",now(),now(),%d,%d,"","")
replace "text and HTML" with "HTML"
line 1007 add || !isset($_POST["sendformat"])to get this code :
- Code: Select all
$formatting_content .= $_POST["sendformat"]=="HTML" || !isset($_POST["sendformat"]) ?"checked":"";
line 1021 delete || !isset($_POST["sendformat"]) to get
- Code: Select all
$formatting_content .= $_POST["sendformat"]=="text and HTML"?"checked":"";
to get text checked by default it's almost the same