still, one question, what exactly does 'comment out' mean? </n00bish>
edit3: and in the 1.2 upgrade you say to find
PHP Code:
$postinfo[filename] .= "<a href=\"attachment.php?s=$session[sessionhash]&attachmentid=$attach[attachmentid]\" target=\"_blank\">$name</a> ";
}
$postinfo[filename] = htmlspecialchars($attachmentinfo['filename']);
and i have that any where...x.X
PHP Code:
$postinfo[filename] = htmlspecialchars($attachmentinfo['filename']);
is all i have >.>. so should I just replace
PHP Code:
$postinfo[filename] = htmlspecialchars($attachmentinfo['filename']);
with
PHP Code:
$postinfo[filename] .= "<a href=\"attachment.php?s=$session[sessionhash]&attachmentid=$attach[attachmentid]\" target=\"_blank\">$name</a> ";
}
$postinfo[filename] = htmlspecialchars($attachmentinfo['filename']);
??
i have skipped that step for now

:bunny: