Index: views/activity.views.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/activity/views/Attic/activity.views.inc,v
retrieving revision 1.1.2.15
diff -u -p -w -r1.1.2.15 activity.views.inc
--- views/activity.views.inc	27 Aug 2009 01:05:41 -0000	1.1.2.15
+++ views/activity.views.inc	4 Sep 2009 00:42:40 -0000
@@ -40,17 +40,23 @@ function activity_views_data() {
       'field' => 'uid',
     ),
   );
-  $data['activity']['op'] = array(
+  // In the schema this field is really named 'op' but views won't let you
+  // reorder the fields if there's a field with this name so we give it an
+  // alias.
+  $data['activity']['operation'] = array(
     'title' => t('Operation'),
     'help' => t('The operation being performed (update, insert, etc.)'),
     'field' => array(
       'handler' => 'views_handler_field',
+      'field' => 'op',
     ),
     'filter' => array(
       'handler' => 'views_handler_filter_string',
+      'field' => 'op',
     ),
     'argument' => array(
       'handler' => 'views_handler_argument_string',
+      'field' => 'op',
     ),
   );
   $data['activity']['type'] = array(
