Index: views-accordion.js
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views_accordion/views-accordion.js,v
retrieving revision 1.1.2.16
diff -u -p -r1.1.2.16 views-accordion.js
--- views-accordion.js	22 Apr 2010 10:36:23 -0000	1.1.2.16
+++ views-accordion.js	16 Oct 2010 16:13:29 -0000
@@ -71,6 +71,10 @@ Drupal.behaviors.views_accordion = funct
          *  Accordion action
          */
         $triggers.click(function(ev) {
+          // Don't do anything if we allow links in the header to be clickable, and we have clicked an anchor tag
+          if(enableheaderlinks && ev.originalTarget.tagName == 'A'){
+            return;
+          }
           if (ev.detail === 1 || !ev.detail) { // so we prevent double clicking madness (for not so savy web users) !ev.detail is for when its triggered by code
             // so we keep accordions for each field group are independent (if using field groups)
             var $ourTrigger = $(this);
Index: views-view-accordion.tpl.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views_accordion/views-view-accordion.tpl.php,v
retrieving revision 1.1.2.3
diff -u -p -r1.1.2.3 views-view-accordion.tpl.php
--- views-view-accordion.tpl.php	26 Feb 2009 20:25:59 -0000	1.1.2.3
+++ views-view-accordion.tpl.php	16 Oct 2010 16:13:30 -0000
@@ -8,7 +8,7 @@
  *
  *  Note that the accordion NEEDS <?php print $row ?> to be wrapped by an element, or it will hide all fields on all rows under the first field.
  *  Also, if you use field grouping and use the headers of the groups as the accordion headers, these NEED to be inside h3 tags exactly as below (though u can add classes)
- * 
+ *
  *  The current div wraping each row gets two css classes, which should be enough for most cases:
  *     "views-accordion-item"
  *      and a unique per row class like item-0
