function comment_delete_multiple in Migrate 6.2
File
- includes/
d7.inc, line 39 - Drupal 7 functions 'n' things implemented in Drupal 6, to ease backporting
Code
function comment_delete_multiple($cids) {
require_once drupal_get_path('module', 'comment') . '/comment.admin.inc';
foreach ($cids as $cid) {
comment_delete($cid);
}
}