Bu ipucumuz sayesinde eğer üye mesajına resim eklememişse mesaj gönderilemez. Resim img tagı ile ya da eklenti olarak eklenmelidir. (Belki birisinin işine yarar.

)
../Sources/Post.phpBul:
if (!isset($_POST['message']) || $func['htmltrim']($_POST['message']) === '')
Değiştir:
Sadece yeni konu açarken çalışması için:
if (isset($_POST['message']) && strtr($_POST['message'], array("[IMG]http://www.trforumcu.net/forum/[/IMG]" => "image")) == $_POST['message'] && $board == 1453 && empty($topic) && !in_array($_FILES['attachment']['type'][0], array('image/gif', 'image/jpeg', 'image/png')))
$post_errors[] = 'no_img';
if (!isset($_POST['message']) || $func['htmltrim']($_POST['message']) === '')
Her mesaj için çalışması için:
if (isset($_POST['message']) && strtr($_POST['message'], array("[IMG]http://www.trforumcu.net/forum/[/IMG]" => "image")) == $_POST['message'] && $board == 1453 && !in_array($_FILES['attachment']['type'][0], array('image/gif', 'image/jpeg', 'image/png')))
$post_errors[] = 'no_img';
if (!isset($_POST['message']) || $func['htmltrim']($_POST['message']) === '')
../Themes/default/languages/Errors.turkish.phpBul:
?>
Değiştir:
$txt['error_no_img'] = 'Resim eklemediniz.';
?>
Tamamiyle [SiNaN] yapımıdır.