Andy Levin - 2006-06-04

Logged In: YES
user_id=1518920

Just had a look at it.

A "\n" is added in the custom field loop after each custom
field. This adds a new line after each custom field when
editing or approving a post.

FIX:
In section
// APPROVING of a post
line 959
$approvedPost .= $configFromINI['General']
['delimiter'].trim($gbentry[6 + $field])."\n";
should be
$approvedPost .= $configFromINI['General']
['delimiter'].trim($gbentry[6 + $field]);
(delete --- ."\n"; --- at the end

The same problem exists when editing a post.
line 1051
$editedPost .= $configFromINI['General']
['delimiter'].safeHTML($_POST['customField'.$field])."\n";
should be
$editedPost .= $configFromINI['General']
['delimiter'].safeHTML($_POST['customField'.$field]);

rgds.
Andy