Quote:
Today at 04:45 AM rake said this in Post #103
I'm glad to see it finally works.
Edit: Wow, great timing. :lick:
To fix the editing error:
Replace
if (trim($attachmentaction)=="delete") {
$attachmentsql=",attachmentid=0";
$DB_site->query("DELETE FROM attachment WHERE attachmentid=$postinfo[attachmentid]");
updatethreadcount($threadinfo[threadid]);
}
With
if (trim($attachmentaction)=="delete") {
$attachmentsql=",attachmentid=0";
$att = explode(",",$postinfo[attachmentid]);
foreach($att as $value) {
if(isset($qry)) {
$qry .= " OR attachmentid='$value'";
} else {
$qry = "attachmentid='$value'";
}
}this part
$DB_site->query("DELETE FROM attachment WHERE $qry");
updatethreadcount($threadinfo[threadid]);
}
|
thankz again rake...it finally works now......
but i use ur code above i got error when i take the red part than
it works.....if i find any problem i will report let u know.....thankz for the great hack....