Index: wp-admin/includes/dashboard.php
===================================================================
--- wp-admin/includes/dashboard.php	(Revision 18235)
+++ wp-admin/includes/dashboard.php	(Arbeitskopie)
@@ -1042,7 +1042,7 @@
 		$check_urls = array( $widgets[$widget_id]['url'] );
 	}
 
-	$cache_key = 'dash_' . md5( $callback . implode(',', $check_urls) );
+	$cache_key = 'dash_' . md5( $widget_id );
 	if ( false !== ( $output = get_transient( $cache_key ) ) ) {
 		echo $output;
 		return true;
@@ -1118,6 +1118,8 @@
 			}
 		}
 		update_option( 'dashboard_widget_options', $widget_options );
+		$cache_key = 'dash_' . md5( $widget_id );
+		delete_transient( $cache_key );
 	}
 
 	wp_widget_rss_form( $widget_options[$widget_id], $form_inputs );
