diff --git a/includes/issue_node_view.inc b/includes/issue_node_view.inc
index 2ce85c8..addbec9 100644
--- a/includes/issue_node_view.inc
+++ b/includes/issue_node_view.inc
@@ -78,7 +78,7 @@ function _project_issue_view($node, $teaser = FALSE, $page = FALSE) {
     }
 
     $node->content['project_issue_summary'] = array(
-      '#value' => theme('project_issue_summary', $current_data, project_issue_internal_links($node)),
+      '#value' => theme('project_issue_summary', $current_data, project_issue_internal_links($node), $node),
       '#weight' => -5,
     );
 
@@ -99,10 +99,12 @@ function _project_issue_view($node, $teaser = FALSE, $page = FALSE) {
  *   An array of current issue data for the metadata table.
  * @param $summary_links
  *   An array of internal page links.
+ * @param $issue
+ *   The fully-loaded node object for the current issue.
  * @return
  *   An HTML string of the summary section.
  */
-function theme_project_issue_summary($current_data, $summary_links) {
+function theme_project_issue_summary($current_data, $summary_links, $issue) {
   $allowed_tags = array('a', 'em', 'strong', 'div', 'span');
   // Fields that should be rendered as plain text, not filtered HTML.
   $plain_fields = array('title', 'pid', 'rid');
diff --git a/project_issue.module b/project_issue.module
index c662f17..b4fa23a 100644
--- a/project_issue.module
+++ b/project_issue.module
@@ -349,6 +349,7 @@ function project_issue_theme() {
       'arguments' => array(
         'current_data' => NULL,
         'summary_links' => NULL,
+        'issue' => NULL,
       ),
     ),
     'project_issue_admin_states_form' => array(
