Quote:
Originally Posted by flicknut
Thanks for your help!
Okay last question. How do I add a carriage return inside my default footer? I tried \n but this didn't work. Right now when someone creates a post, it puts the default footer on the same line as the username. For example, my outgoing posts look like this:
--
hdtvnutThis post originated from http://www.hdtv-info.org/forum/
|
In
includes/functions_nntp.php
find
$signature .= $nntp_settings['default_footer'] . "\n";
change it to
$signature .= "\n" . $nntp_settings['default_footer'] . "\n";
should do the trick.