? mysql_high_performance_upgrade.php
? views
? views.patch
Index: comment_upload.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/comment_upload/comment_upload.install,v
retrieving revision 1.4.2.5
diff -p -0 -r1.4.2.5 comment_upload.install
*** comment_upload.install	11 Dec 2008 11:02:11 -0000	1.4.2.5
--- comment_upload.install	29 Jan 2009 01:58:17 -0000
*************** function comment_upload_update_6000() {
*** 164 ****
!     $schema['comment_upload'] = array(
--- 164,165 ----
!   global $db_url;
!   $schema['comment_upload'] = array(
*************** function comment_upload_update_6000() {
*** 222 ****
- 
--- 222 ----
Index: comment_upload.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/comment_upload/comment_upload.module,v
retrieving revision 1.7.2.17
diff -p -0 -r1.7.2.17 comment_upload.module
*** comment_upload.module	15 Sep 2008 16:45:15 -0000	1.7.2.17
--- comment_upload.module	29 Jan 2009 01:58:17 -0000
*************** function comment_upload_upload_form($fil
*** 299 ****
!   ),
--- 299 ----
!     ),
*************** function theme_comment_upload_form_curre
*** 641 ****
--- 642,651 ----
+  * Implementation of hook_views_api().
+  */
+ function comment_upload_views_api() {
+   return array(
+     'api' => 2.0,
+     'path' => drupal_get_path('module', 'comment_upload') .'/views',
+   );
+ }
+ 
+ /**
