function node_gallery_update_6301 in Node Gallery 6.3
Remove orphaned image nodes in the db
File
- ./
node_gallery.install, line 826 - Install, update and uninstall functions for the node_gallery module.
Code
function node_gallery_update_6301() {
// Remove any orphans in the db
$ret = array();
node_gallery_delete_orphans();
return $ret;
}