Save as draft and continue editing feature.

git-svn-id: http://svn.automattic.com/wordpress/trunk@528 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
saxmatt
2003-11-06 07:48:53 +00:00
parent 567a609308
commit f451503a81
2 changed files with 7 additions and 2 deletions

View File

@@ -81,6 +81,8 @@ switch($action) {
} else {
$now = date('Y-m-d H:i:s', (time() + ($time_difference * 3600)));
}
if ('' != $HTTP_POST_VARS['save']) $post_status = 'draft';
if((get_settings('use_geo_positions')) && (strlen($latstr) > 2) && (strlen($lonstr) > 2) ) {
$postquery ="INSERT INTO $tableposts
@@ -145,6 +147,8 @@ switch($action) {
} else {
$location = 'wp-post.php';
}
if ('' != $HTTP_POST_VARS['save']) $location = "wp-post.php?action=edit&post=$post_ID";
header("Location: $location");
exit();
break;