Brakuje Tobie pola po WHERE
SELECT * FROM attachments WHERE IN (110) AND attach_rel_module='post'
Coś nadpisuje Tobie drugi argument metody
/**
* Removes attachment(s)
*
* @param array $remove_ids Array of attachment ids to remove
* @param string $id_type Column to use when deleting, attach_rel_id by default
* @return bool
*/
public function bulkRemoveAttachment( $remove_ids=array(), $id_type='attach_rel_id' )
{
/* Grab the attachments */
$this->DB->build( array(
'select' => '*',
'from' => 'attachments',
'where' => $id_type . ' IN (' . implode( ',', $remove_ids ) . ") AND attach_rel_module='{$this->type}'"
) );
Najlepiej jakbyś poszukał gdzie jest uruchamiana metoda bulkRemoveAttachment() i nie wstawiana jest wartość drugiej zmiennej.