? .DS_Store
? config-link.patch
Index: views_attach.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views_attach/views_attach.module,v
retrieving revision 1.1.2.9.2.7
diff -u -p -r1.1.2.9.2.7 views_attach.module
--- views_attach.module	25 Jun 2009 23:19:20 -0000	1.1.2.9.2.7
+++ views_attach.module	26 Jun 2009 20:54:03 -0000
@@ -28,13 +28,23 @@ function views_attach_content_extra_fiel
   // Now add a weight field for each view/display.
   foreach ($items as $item) {
     if (!$item['title']) {
-      $item['title'] = theme('placeholder', t('None'));
+      $item['title'] = t('None');
     }
     $extras[$item['name'] .'_'. $item['display']] = array(
       'label' => $item['title'],
       'description' => t('Attached view: !view - !display', array('!view' => $item['name'], '!display' => $item['display'])),
       'weight' => 10,
     );
+
+    if (user_access('administer views')) {
+      $link = l(t('Configure'), 'admin/build/views/edit/' . $item['name'],
+        array(
+          'query' => drupal_get_destination(),
+          'fragment' => 'views-tab-' . $item['display'],
+        )
+      );
+      $extras[$item['name'] .'_'. $item['display']]['configure'] = $link;
+    }
   }
 
   return $extras;
