? 367631_project_release_download_table_theme_2_D6.patch
Index: /Applications/MAMP/htdocs/project6/drupal/sites/all/modules/project/release/views/handlers/project_release_handler_field_most_recent_release.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/project/release/views/handlers/project_release_handler_field_most_recent_release.inc,v
retrieving revision 1.1
diff -u -p -r1.1 project_release_handler_field_most_recent_release.inc
--- release/views/handlers/project_release_handler_field_most_recent_release.inc	13 Jan 2009 17:47:09 -0000	1.1
+++ release/views/handlers/project_release_handler_field_most_recent_release.inc	8 Feb 2009 17:26:22 -0000
@@ -14,7 +14,7 @@ class project_release_handler_field_most
   function query() {
     $this->ensure_my_table();
     // Add the field.
-    $field = !empty($this->relationship) ? $this->relationship : $this->table_alias . '.' . $this->real_field;
+    $field = (!empty($this->relationship) ? $this->relationship : $this->table_alias) . '.' . $this->real_field;
     $field_alias = !empty($this->relationship) ? $this->relationship . '_max' : $this->table_alias . '_' . $this->real_field . '_max';
     $this->field_alias = $this->query->add_field(NULL, "MAX($field)", $field_alias);
     $this->add_additional_fields();
@@ -25,4 +25,3 @@ class project_release_handler_field_most
     $this->query->add_groupby($nid_field_alias);
   }
 }
-
Index: /Applications/MAMP/htdocs/project6/drupal/sites/all/modules/project/views/handlers/project_handler_field_term_node_project_type_tid.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/project/views/handlers/project_handler_field_term_node_project_type_tid.inc,v
retrieving revision 1.2
diff -u -p -r1.2 project_handler_field_term_node_project_type_tid.inc
--- views/handlers/project_handler_field_term_node_project_type_tid.inc	15 Jan 2009 06:45:33 -0000	1.2
+++ views/handlers/project_handler_field_term_node_project_type_tid.inc	8 Feb 2009 17:26:22 -0000
@@ -33,7 +33,7 @@ class project_handler_field_term_node_pr
     $project_type_vid = _project_get_vid();
     if (!empty($project_type_vid)) {
       $vocabulary = taxonomy_vocabulary_load($project_type_vid);
-      $options[$vocabulary->vid] = $vocabulary->name;
+      $options[$vocabulary->vid] = check_plain($vocabulary->name);
 
       unset($form['vids']);
       $form['vids'] = array(
@@ -49,13 +49,6 @@ class project_handler_field_term_node_pr
     }
   }
 
-  /**
-   * Add this term to the query
-   */
-  function query() {
-    $this->add_additional_fields();
-  }
-
 // @TODO:  Finish this handler.
   function pre_render($values) {
     $this->field_alias = $this->aliases['vid'];
Index: /Applications/MAMP/htdocs/project6/drupal/sites/all/modules/project/views/handlers/project_handler_filter_project_type_vid.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/project/views/handlers/project_handler_filter_project_type_vid.inc,v
retrieving revision 1.3
diff -u -p -r1.3 project_handler_filter_project_type_vid.inc
--- views/handlers/project_handler_filter_project_type_vid.inc	16 Jan 2009 06:46:24 -0000	1.3
+++ views/handlers/project_handler_filter_project_type_vid.inc	8 Feb 2009 17:26:22 -0000
@@ -36,7 +36,7 @@ class project_handler_filter_project_typ
     $vid = _project_get_vid();
     if (!empty($vid)) {
       $vocabulary = taxonomy_vocabulary_load($vid);
-      $this->value_options[$vid] = $vocabulary->name;
+      $this->value_options[$vid] = check_plain($vocabulary->name);
     }
   }
 
