Index: shazamgallery.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/shazamgallery/shazamgallery.module,v retrieving revision 1.25 diff -u -F^f -r1.25 shazamgallery.module --- shazamgallery.module 2 May 2006 15:17:44 -0000 1.25 +++ shazamgallery.module 31 May 2006 22:04:03 -0000 @@ -304,7 +304,7 @@ function shazamgallery_link($type, $node $types = variable_get('shazamgallery_nodes', array('image')); if ($type == "page" && user_access('access content')) { - if (_image_get_vid()) { + if (_image_gallery_get_vid()) { $links[] = l(t("image galleries"), "gallery"); } } @@ -477,10 +477,10 @@ function _shazamgallery_set_gallery_brea * Set the breadcrumb for any image node */ function _shazamgallery_set_image_breadcrumb($node) { - $terms = taxonomy_node_get_terms_by_vocabulary($node->nid, _image_get_vid()); + $terms = taxonomy_node_get_terms_by_vocabulary($node->nid, _image_gallery_get_vid()); $term = array_pop($terms); if ($term) { - $vocabulary = taxonomy_get_vocabulary(_image_get_vid()); + $vocabulary = taxonomy_get_vocabulary(_image_gallery_get_vid()); $breadcrumb[] = array('path' => 'gallery', 'title' => $vocabulary->name); // XXXtangent: changed this to use galleries for the breadcrumb instead of taxonomy if ($parents = shazamgallery_get_parents($node->nid)) {