? .project
? views_fusion_confirm_delete.patch
? views_fusion_helptext.patch
Index: views_fusion.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views_fusion/views_fusion.module,v
retrieving revision 1.4.2.2
diff -u -p -r1.4.2.2 views_fusion.module
--- views_fusion.module	27 Jan 2007 23:24:08 -0000	1.4.2.2
+++ views_fusion.module	23 Feb 2007 03:13:30 -0000
@@ -14,6 +14,8 @@ function views_fusion_help($section) {
   switch ($section) {
     case 'admin/modules#description':
       return t('Provides fusing of multiple views.');
+    case 'admin/views/fusion':
+      return '<p>'. t('This screen allows the fusion of two views.  Select the main view you want to use and then select a second view you would like to "fuse" with the first view.  Fields, arguments, and filters from the fused view will be intelligently merged into the base view using the handler specified in the final field.') .'</p>';
   }
 }
 
@@ -45,13 +47,13 @@ function views_fusion_admin() {
   $form['add'] = array('#type' => 'fieldset', '#title' => t('Add another views fusion'));
   $form['add']['vid'] = array(
     '#type' => 'select',
-    '#title' => t('Fuse view'),
+    '#title' => t('base view'),
     '#options' => _views_fusion_get_views_list(),
     '#required' => true,
   );
   $form['add']['mvid'] = array(
     '#type' => 'select',
-    '#title' => t('with view'),
+    '#title' => t('fuse with view'),
     '#options' => _views_fusion_get_views_list(),
     '#required' => true,
   );
