rake i have problem with instruction file the editpost.php part
if i already have this hack ""add attachment on edit post""
should i also edit this two parts??
PHP Code:
==========
Find
==========
$attachmentinfo=$DB_site->query_first("SELECT filename FROM attachment WHERE attachmentid=$postinfo[attachmentid]");
==================
Replace With
==================
$attachmentinfo=$DB_site->query("SELECT filename,attachmentid FROM attachment WHERE $qry");
while($attach = $DB_site->fetch_array($attachmentinfo)) {
$name = htmlspecialchars($attach['filename']);
$postinfo[filename] .= "<a href=\"attachment.php?s=$session[sessionhash]&attachmentid=$attach[attachmentid]\" target=\"_blank\">$name</a> ";
}
=========
Find
=========
$DB_site->query("DELETE FROM attachment WHERE attachmentid=$postinfo[attachmentid]");
==================
Replace With
==================
$att = explode(",",$postinfo[attachmentid]);
foreach($att as $value) {
if(isset($qry)) {
$qry .= " OR attachmentid='$value'";
} else {
$qry = "attachmentid='$value'";
}
}
$DB_site->query("DELETE FROM attachment WHERE $qry");
that confused me.....if i should than i got this error
Parse error: parse error, unexpected '}' in /forum/editpost.php on line 437
and what is the attachment.php do??in the zip file.....