
Originally Posted by
gunni
I use 1.5.4
Did not check logs because it works well before I changed the code...
The code "change" simply prevented the display of the fact that the subject was blank. It did not allow the subject to be blank. Code like that is found higher up in an if statement. Something like
Code:
if (!empty($subject) && !empty($body) && etc... ){
// process code
} else {
if (empty($subject)) {
// display empty subject error message
}
if (empty($body)) {
// display empty body error message
}
While there are differences in that template it would appear that the same logic is applied as the base install. Just has more fields.