? 340998_simpleviews_tweaks_2.patch
Index: simpleviews.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/simpleviews/simpleviews.info,v
retrieving revision 1.3
diff -u -p -r1.3 simpleviews.info
--- simpleviews.info	25 Sep 2008 22:08:09 -0000	1.3
+++ simpleviews.info	1 Dec 2008 02:46:47 -0000
@@ -3,3 +3,4 @@ name = SimpleViews
 description = An easy-to-use tool for bulding content listing pages.
 dependencies[] = views
 core = 6.x
+package = Views
\ No newline at end of file
Index: simpleviews.pages.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/simpleviews/simpleviews.pages.inc,v
retrieving revision 1.1.2.1
diff -u -p -r1.1.2.1 simpleviews.pages.inc
--- simpleviews.pages.inc	26 Sep 2008 19:28:46 -0000	1.1.2.1
+++ simpleviews.pages.inc	1 Dec 2008 02:46:47 -0000
@@ -51,12 +51,12 @@ function _simpleviews_overview_item_fiel
 
   $path = drupal_get_path('module', 'simpleviews') . '/images/';
   $links[] = array(
-    'title' => theme('image', $path . 'text-editor.png', t('Edit')),
+    'title' => theme('image', $path . 'text-editor.png', t('Edit'), t('Edit')),
     'href' => 'admin/build/simpleviews/' . $item['svid'] . '/edit',
     'html' => TRUE,
   );
   $links[] = array(
-    'title' => theme('image', $path . 'edit-delete.png', t('Delete')),
+    'title' => theme('image', $path . 'edit-delete.png', t('Delete'), t('Delete')),
     'href' => 'admin/build/simpleviews/' . $item['svid'] . '/delete',
     'html' => TRUE,
   );
@@ -282,7 +282,7 @@ function theme_simpleviews_edit_form($fo
   $form['argument']['argument']['#prefix'] = '<div id="simpleviews-arg-wrapper"' . $extra . '>';
   $form['argument']['argument']['#suffix'] = '</div>';
 
-  $output .= '<div id="simpleviews-elements">' . drupal_render($form) . '</div>';
+  $output = '<div id="simpleviews-elements">' . drupal_render($form) . '</div>';
   return $output;
 }
 
