Index: wp-admin/includes/dashboard.php
===================================================================
--- wp-admin/includes/dashboard.php	(revision 14123)
+++ wp-admin/includes/dashboard.php	(working copy)
@@ -409,9 +409,10 @@
 
 	$post = get_default_post_to_edit();
 ?>
-
+<?php do_action('quickpress_form_before'); ?>
 	<form name="post" action="<?php echo esc_url( admin_url( 'post.php' ) ); ?>" method="post" id="quick-press">
 		<h4 id="quick-post-title"><label for="title"><?php _e('Title') ?></label></h4>
+		<?php do_action('quickpress_form_before_fields'); ?>
 		<div class="input-text-wrap">
 			<input type="text" name="post_title" id="title" tabindex="1" autocomplete="off" value="<?php echo esc_attr( $post->post_title ); ?>" />
 		</div>
@@ -433,7 +434,7 @@
 		<div class="input-text-wrap">
 			<input type="text" name="tags_input" id="tags-input" tabindex="3" value="<?php echo get_tags_to_edit( $post->ID ); ?>" />
 		</div>
-
+		<?php do_action('quickpress_form_after_fields'); ?>
 		<p class="submit">
 			<input type="hidden" name="action" id="quickpost-action" value="post-quickpress-save" />
 			<input type="hidden" name="quickpress_post_ID" value="<?php echo (int) $post->ID; ?>" />
@@ -449,7 +450,7 @@
 		</p>
 
 	</form>
-
+<?php do_action('quickpress_form_after'); ?>
 <?php
 	if ( $drafts )
 		wp_dashboard_recent_drafts( $drafts );

