? branch-logs
? cvs-update-list
? dif
? issue_files_2.patch
cvs diff: Diffing .
Index: project_issue.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/project_issue/project_issue.module,v
retrieving revision 1.61
diff -u -p -r1.61 project_issue.module
--- project_issue.module	20 Oct 2007 23:36:49 -0000	1.61
+++ project_issue.module	20 Oct 2007 23:51:14 -0000
@@ -78,12 +78,27 @@ function project_issue_form_alter($form_
         if (project_issue_is_comment_reply()) {
           $form['#pre_render'][] = 'project_issue_comment_pre_render';
         }
+
+        // Make sure the 'File attachments' fieldset is expanded.
+        if (isset($form['attachments'])) {
+          $form['attachments']['#collapsed'] = FALSE;
+        }
+
       }
       break;
+
     // Issues must be updated if any project issue comments are edited/deleted.
     case 'comment_admin_overview':
       $form['#submit']['project_issue_comment_mass_update'] = array();
       break;
+
+    case 'project_issue_node_form':
+      // Make sure the 'File attachments' fieldset is expanded.
+      if (isset($form['attachments'])) {
+        $form['attachments']['#collapsed'] = FALSE;
+      }
+      break;
+
   }
 }
 
cvs diff: Diffing po
