Index: page.php
===================================================================
--- page.php	(revision 12596)
+++ page.php	(working copy)
@@ -213,9 +213,14 @@
 	break;
 
 default:
-	wp_redirect('edit-pages.php');
-	exit();
-	break;
+if(empty( $_POST['quickpress_post_ID'] ) ){
+$post_ID === 0;
+
+wp_die( __('You attempted to save or publish an empty page.') );
+wp_redirect('page-new.php');
+exit;
+}
+break;
 } // end switch
 include('admin-footer.php');
 ?>
Index: post.php
===================================================================
--- post.php	(revision 12596)
+++ post.php	(working copy)
@@ -255,9 +255,14 @@
 	break;
 
 default:
-	wp_redirect('edit.php');
-	exit();
-	break;
+if(empty( $_POST['quickpress_post_ID'] ) ){
+$post_ID === 0;
+
+wp_die( __('You attempted to save or publish an empty post.') );
+wp_redirect('post-new.php');
+exit;
+}
+break;
 } // end switch
 include('admin-footer.php');
 ?>
