? zoomify.patch ? zoomifyViewer.swf ? zoomifyViewerV420070124.zip Index: zoomify.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/zoomify/zoomify.module,v retrieving revision 1.1.2.2.2.3 diff -u -p -r1.1.2.2.2.3 zoomify.module --- zoomify.module 24 Aug 2008 09:45:42 -0000 1.1.2.2.2.3 +++ zoomify.module 23 Oct 2008 23:20:31 -0000 @@ -25,18 +25,21 @@ function zoomify_menu($may_cache) { ); } else { if (arg(0) == 'node' && is_numeric(arg(1))) { +var_dump("1st if"); $node = node_load(arg(1)); // Check for included content types only. $types = variable_get('zoomify_types', NULL); if (isset($types) && $types[$node->type]) { +var_dump("2nd if"); $images = _zoomify_images($node); if (!empty($images) && is_dir(_zoomify_nodepath($node))) { +var_dump("3rd if"); $index = 0; if (arg(2) == 'zoomify' && is_numeric(arg(3))) { $index = arg(3); } $items[] = array( - 'path' => 'node/'.arg(1).'/zoomify/'.$index, + 'path' => 'node/'.arg(1).'/zoomify', 'title' => t('Zoomify'), 'callback' => 'zoomify_display', 'callback arguments' => array($node, $images, $index),