Ok, well first you will need a plain-text editor, such as Notepad, or TextEdit.
Open up the file that goes in the admin folder, it's called "pp_upload.php".
Go to line #90, you should see this code:
PHP Code:
// Translate to Pixelpost format:
$_POST['headline'] = $_POST['title'];
$_POST['body'] = $_POST['description'];
$_POST['tags'] = trim($_POST['tags'],', ');
Just add that extra line of code below that and you should be good to go.
it should look like this when you are done:
PHP Code:
// Translate to Pixelpost format:
$_POST['headline'] = $_POST['title'];
$_POST['body'] = $_POST['description'];
$_POST['tags'] = trim($_POST['tags'],', ');
$_POST['headline'] = str_replace(array(".JPG",".jpg"), "",$_POST['headline']);
Save the changes, and re-upload the file, and you're done!