<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre, #msg p { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[12017] trunk/wp-admin: Show &quot;Draft updated&quot; instead of &quot;Post updated&quot;
  when saving drafts.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/12017">12017</a></dd>
<dt>Author</dt> <dd>azaozz</dd>
<dt>Date</dt> <dd>2009-10-10 07:24:05 +0000 (Sat, 10 Oct 2009)</dd>
</dl>

<h3>Log Message</h3>
<pre>Show &quot;Draft updated&quot; instead of &quot;Post updated&quot; when saving drafts.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadmineditformadvancedphp">trunk/wp-admin/edit-form-advanced.php</a></li>
<li><a href="#trunkwpadminpostphp">trunk/wp-admin/post.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadmineditformadvancedphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/edit-form-advanced.php (12016 => 12017)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/edit-form-advanced.php        2009-10-09 23:28:06 UTC (rev 12016)
+++ trunk/wp-admin/edit-form-advanced.php        2009-10-10 07:24:05 UTC (rev 12017)
</span><span class="lines">@@ -29,6 +29,7 @@
</span><span class="cx"> $messages[8] = sprintf(__('Post submitted. &lt;a href=&quot;%s&quot;&gt;Preview post&lt;/a&gt;'), add_query_arg( 'preview', 'true', get_permalink($post_ID) ) );
</span><span class="cx"> // translators: Publish box date formt, see http://php.net/date - Same as in meta-boxes.php
</span><span class="cx"> $messages[9] = sprintf(__('Post scheduled for: &lt;b&gt;%1$s&lt;/b&gt;. &lt;a href=&quot;%2$s&quot;&gt;Preview post&lt;/a&gt;'), date_i18n( __( 'M j, Y @ G:i' ), strtotime( $post-&gt;post_date ) ), get_permalink($post_ID));
</span><ins>+$messages[10] = sprintf(__('Draft updated. &lt;a href=&quot;%s&quot;&gt;Preview&lt;/a&gt;'), get_permalink($post_ID));
</ins><span class="cx"> 
</span><span class="cx"> if ( isset($_GET['revision']) )
</span><span class="cx">         $messages[5] = sprintf( __('Post restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) );
</span></span></pre></div>
<a id="trunkwpadminpostphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/post.php (12016 => 12017)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/post.php        2009-10-09 23:28:06 UTC (rev 12016)
+++ trunk/wp-admin/post.php        2009-10-10 07:24:05 UTC (rev 12017)
</span><span class="lines">@@ -38,26 +38,31 @@
</span><span class="cx">                         $location = 'sidebar.php?a=c';
</span><span class="cx">                 elseif ( isset($_POST['publish']) )
</span><span class="cx">                         $location = 'sidebar.php?a=b';
</span><del>-        } elseif ( ( isset($_POST['save']) || isset($_POST['publish']) ) ) {
</del><ins>+        } elseif ( isset($_POST['save']) || isset($_POST['publish']) ) {
+                $status = get_post_status( $post_ID );
+                $link = get_edit_post_link( $post_ID, 'url' );
+
</ins><span class="cx">                 if ( isset( $_POST['publish'] ) ) {
</span><del>-                        switch ( get_post_status( $post_ID ) ) {
</del><ins>+                        switch ( $status ) {
</ins><span class="cx">                                 case 'pending':
</span><del>-                                        $location = add_query_arg( 'message', 8, get_edit_post_link( $post_ID, 'url' ) );
</del><ins>+                                        $message = 8;
</ins><span class="cx">                                         break;
</span><span class="cx">                                 case 'future':
</span><del>-                                        $location = add_query_arg( 'message', 9, get_edit_post_link( $post_ID, 'url' ) );
</del><ins>+                                        $message = 9;
</ins><span class="cx">                                         break;
</span><span class="cx">                                 default:
</span><del>-                                        $location = add_query_arg( 'message', 6, get_edit_post_link( $post_ID, 'url' ) );
</del><ins>+                                        $message = 6;
</ins><span class="cx">                         }
</span><span class="cx">                 } else {
</span><del>-                        $location = add_query_arg( 'message', 1, get_edit_post_link( $post_ID, 'url' ) );
</del><ins>+                                $message = 'draft' == $status ? 10 : 1;
</ins><span class="cx">                 }
</span><del>-        } elseif (isset($_POST['addmeta']) &amp;&amp; $_POST['addmeta']) {
</del><ins>+
+                $location = add_query_arg( 'message', $message, $link );
+        } elseif ( isset($_POST['addmeta']) &amp;&amp; $_POST['addmeta'] ) {
</ins><span class="cx">                 $location = add_query_arg( 'message', 2, wp_get_referer() );
</span><span class="cx">                 $location = explode('#', $location);
</span><span class="cx">                 $location = $location[0] . '#postcustom';
</span><del>-        } elseif (isset($_POST['deletemeta']) &amp;&amp; $_POST['deletemeta']) {
</del><ins>+        } elseif ( isset($_POST['deletemeta']) &amp;&amp; $_POST['deletemeta'] ) {
</ins><span class="cx">                 $location = add_query_arg( 'message', 3, wp_get_referer() );
</span><span class="cx">                 $location = explode('#', $location);
</span><span class="cx">                 $location = $location[0] . '#postcustom';
</span></span></pre>
</div>
</div>

</body>
</html>