Quote:
Today at 02:18 AM Link14716 said this in Post #63
Whoops...
Change
PHP Code:
if(isset($qry)) {
$qry .= " OR attachmentid='$value'";
} else {
$qry = "attachmentid='$value'";
}
To
PHP Code:
$att = explode(",",$postinfo[attachmentid]);
foreach($att as $value) {
if(isset($qry)) {
$qry .= " OR attachmentid='$value'";
} else {
$qry = "attachmentid='$value'";
}
}
Even still, when I submit the edited post, it gives me a blank page and I look at the post and it is now completely blank... 
EDIT: Whoops, I made anopther mistake in the above code. Re-apply that change if you have already applied it.
|
That works fine for editing posts with one attachment or no attachments.. but I get this when trying to edit a post with multiple attachments: