View Single Post
  #104  
Old 04-21-2008, 05:38 AM
jaywilliams's Avatar
jaywilliams+ Offline
Team Pixelpost
 
Join Date: Sep 2005
Posts: 1,003
Send a message via AIM to jaywilliams Send a message via MSN to jaywilliams Send a message via Yahoo to jaywilliams Send a message via Skype™ to jaywilliams
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!
__________________
Jay Williams | A Different View
Reply With Quote