extra 'returns' put into php files
When I upload php files, and then download them again for editing or backup, somehow extra
carriage returns are being put into the files. So for instance a file which was uploaded like this:
if ($style=="menu3") {
$SL3['prelink'] = "";
$SL3['postlink'] = "";
$SL3['linkclass'] = "";
$SL3['linkclass_hilite'] = "";
will look like this when downloaded again:
if ($style=="menu3") {
$SL3['prelink'] = "";
$SL3['postlink'] = "";
$SL3['linkclass'] = "";
$SL3['linkclass_hilite'] = "";
Any ideas what might be causing this?
Cheers.
|