Index: issue.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/project_issue/issue.inc,v
retrieving revision 1.285
diff -u -F^f -u -F^f -r1.285 issue.inc
--- issue.inc	5 Jan 2008 01:27:21 -0000	1.285
+++ issue.inc	5 Jan 2008 15:08:48 -0000
@@ -1605,7 +1605,7 @@ function project_issue_query_result($que
       $row[] = $title . theme('mark', node_mark($node->nid, $node->changed));
       $row[] = $states[$node->sid];
       $row[] = $priorities[$node->priority];
-      $row[] = t($node->category);
+      $row[] = check_plain($node->category);
       if (count($releases)) {
         $row[] = $releases[$node->rid];
       }
Index: project_issue.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/project_issue/project_issue.install,v
retrieving revision 1.39
diff -u -F^f -u -F^f -r1.39 project_issue.install
--- project_issue.install	2 Nov 2007 04:28:57 -0000	1.39
+++ project_issue.install	5 Jan 2008 15:08:48 -0000
@@ -745,7 +745,14 @@ function project_issue_check_update_abor
     // Unfortunately, there's no elegant way to properly reset the schema version
     // programatically, so we'll have to instruct the user to redo the update
     // manually.
-    $message .= '<p>'. t("This and all subsequent updates of Project issue were safely aborted. Correct the problems listed above, then <a href=\"". base_path() ."update.php?op=selection\">re-run update.php</a>, click 'Select versions', select update %update for project_issue, and click 'Update'.", array('%update' => $current_update)) .'</p><p><em>'. t("Note: you will most likely need to disable the Project issue module temporarily in order to resolve the issues above. If necessary, please refer to Project issue's UPGRADE.txt for further details regarding this upgrade problem.") .'</em></p>';
+    $message .= '<p>'. 
+      t("This and all subsequent updates of Project issue were safely aborted. 
+        Correct the problems listed above, then <a href=\"!update_path\">re-run update.php</a>, 
+        click 'Select versions', select update %update for project_issue, and click 'Update'.", 
+        array('%update' => $current_update, '!update_path' => base_path() .'update.php?op=selection')) .'</p><p><em>'. 
+      t("Note: you will most likely need to disable the Project issue module temporarily in order to resolve the issues above. 
+        If necessary, please refer to Project issue's UPGRADE.txt for further details regarding this upgrade problem.") 
+      .'</em></p>';
 
     $ret = array(array('success' => FALSE, 'query' => $message));
   }
