? .DS_Store
? updated-theme-links.patch
? modules/.DS_Store
Index: modules/system/system.updater.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.updater.inc,v
retrieving revision 1.9
diff -u -p -r1.9 system.updater.inc
--- modules/system/system.updater.inc	19 Nov 2010 20:38:22 -0000	1.9
+++ modules/system/system.updater.inc	29 Nov 2010 19:27:14 -0000
@@ -144,8 +144,13 @@ class ThemeUpdater extends Updater imple
   }
 
   public function postInstallTasks() {
+    $path = url('admin/appearance/default', array('query' => array('token' => drupal_get_token('system-theme-operation-link'), 'theme' => $this->name), 'absolute' => TRUE));
+	
     return array(
-      l(t('Set the !project theme as default', array('!project' => $this->title)), 'admin/appearance'),
+      l(t('View installed themes'), 'admin/appearance'),
+      l(t('Set the !project theme as default', array('!project' => $this->title)), $path),
+      l(t('Edit settings for the !project theme', array('!project' => $this->title)), 'admin/appearance/settings/' . $this->name),
+
     );
   }
 }
