Anders M
Junior Member
Sweden
117 Posts |
Posted - 09 May 2001 : 20:44:53
|
vbCrLf is used everywhere in the Snitz code. It is a carriage return – linefeed combination, i.e. Chr(13) & Chr(10). This works fine on NT platforms, but not on Unix/Linux, where only linefeed vbLf, Chr(10), shall be used.
I have problems with the current Snitz release, since I have my forum on Linux/ChiliAsp. I noticed it while working on the Email Subscription MOD. The email sent from Snitz can be quite strange looking.
To make Snitz platform independent, all vbCrLf should be replaced with vbNewLine. This is a platform-specific newline character; whatever is appropriate for the platform. Chr(13) & Chr(10) will automatically be used on NT, while only Chr(10) will be used on Unix/Linux.
Please change all vbCrLf to vbNewLine in future Snitz releases. We do want to support Unix/Linux, don't we?
-Anders M
|
|