I found this from
here:
QUOTE
In prior versions of Firefox, there were cases in which when the user submitted a file for uploading, the entire path of the file was available to the web application. This privacy concern has been resolved in Firefox 3; now only the filename itself is available to the web application.
That reminds me, it's worth fixing the following glitch, which shows up in FF3. Look in pic_details.php for
CODE
<td class='cell_header' style='background-image:url(" . getSkinElement($config['stylesheet'], "images/td_back_mid.gif") . ");text-align:center' width='60%'>{$row['title']}</td>
and replace it with
CODE
<td class='cell_header' style='background-image:url(" . getSkinElement($config['stylesheet'], "images/td_back_mid.gif") . ");text-align:center' width='100%'>{$row['title']}</td>