<!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 { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul, pre { 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>[16400] trunk/wp-includes/post.php: Update some @since tags.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/16400">16400</a></dd>
<dt>Author</dt> <dd>scribu</dd>
<dt>Date</dt> <dd>2010-11-16 13:16:13 +0000 (Tue, 16 Nov 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Update some @since tags. Props demetris. Fixes <a href="http://trac.wordpress.org/ticket/15438">#15438</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpincludespostphp">trunk/wp-includes/post.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpincludespostphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/post.php (16399 => 16400)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/post.php        2010-11-16 05:11:41 UTC (rev 16399)
+++ trunk/wp-includes/post.php        2010-11-16 13:16:13 UTC (rev 16400)
</span><span class="lines">@@ -13,6 +13,8 @@
</span><span class="cx"> 
</span><span class="cx"> /**
</span><span class="cx">  * Creates the initial post types when 'init' action is fired.
</span><ins>+ *
+ * @since 2.9.0
</ins><span class="cx">  */
</span><span class="cx"> function create_initial_post_types() {
</span><span class="cx">         register_post_type( 'post', array(
</span><span class="lines">@@ -476,6 +478,8 @@
</span><span class="cx"> /**
</span><span class="cx">  * Retrieve the format for a post
</span><span class="cx">  *
</span><ins>+ * @since 3.1.0
+ *
</ins><span class="cx">  * @param int|object $post A post
</span><span class="cx">  *
</span><span class="cx">  * @return mixed The format if successful. False if no format is set.  WP_Error if errors.
</span><span class="lines">@@ -494,7 +498,7 @@
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> /**
</span><del>- *  Check if a post has a particular format
</del><ins>+ * Check if a post has a particular format
</ins><span class="cx">  *
</span><span class="cx">  * @since 3.1.0
</span><span class="cx">  * @uses has_term()
</span><span class="lines">@@ -510,6 +514,8 @@
</span><span class="cx"> /**
</span><span class="cx">  * Assign a format to a post
</span><span class="cx">  *
</span><ins>+ * @since 3.1.0
+ *
</ins><span class="cx">  * @param int|object $post The post for which to assign a format
</span><span class="cx">  * @param string $format  A format to assign.  Use an empty string or array to remove all formats from the post.
</span><span class="cx">  * @return mixed WP_Error on error. Array of affected term IDs on success.
</span><span class="lines">@@ -1421,7 +1427,7 @@
</span><span class="cx">  *
</span><span class="cx">  * If the meta field for the post does not exist, it will be added.
</span><span class="cx">  *
</span><del>- * @since 1.5
</del><ins>+ * @since 1.5.0
</ins><span class="cx">  * @uses $wpdb
</span><span class="cx">  * @link http://codex.wordpress.org/Function_Reference/update_post_meta
</span><span class="cx">  *
</span><span class="lines">@@ -2737,6 +2743,8 @@
</span><span class="cx"> /**
</span><span class="cx">  * Computes a unique slug for the post, when given the desired slug and some post details.
</span><span class="cx">  *
</span><ins>+ * @since 2.8.0
+ *
</ins><span class="cx">  * @global wpdb $wpdb
</span><span class="cx">  * @global WP_Rewrite $wp_rewrite
</span><span class="cx">  * @param string $slug the desired slug (post_name)
</span><span class="lines">@@ -3221,6 +3229,7 @@
</span><span class="cx">  * function to traverse and return all the nested children post names of a root page.
</span><span class="cx">  * $children contains parent-chilren relations
</span><span class="cx">  *
</span><ins>+ * @since 2.9.0
</ins><span class="cx">  */
</span><span class="cx"> function _page_traverse_name( $page_id, &amp;$children, &amp;$result ){
</span><span class="cx">         if ( isset( $children[ $page_id ] ) ){
</span><span class="lines">@@ -4545,7 +4554,7 @@
</span><span class="cx">  * complete. The post parent will be an ancestor and the parent of the post
</span><span class="cx">  * parent will be an ancestor. There will only be two ancestors at the most.
</span><span class="cx">  *
</span><del>- * @since unknown
</del><ins>+ * @since 2.5.0
</ins><span class="cx">  * @access private
</span><span class="cx">  * @uses $wpdb
</span><span class="cx">  *
</span><span class="lines">@@ -5030,9 +5039,9 @@
</span><span class="cx"> /**
</span><span class="cx">  * Default post information to use when populating the &quot;Write Post&quot; form.
</span><span class="cx">  *
</span><del>- * @since unknown
</del><ins>+ * @since 2.0.0
</ins><span class="cx">  *
</span><del>- *@param string A post type string, defaults to 'post'.
</del><ins>+ * @param string A post type string, defaults to 'post'.
</ins><span class="cx">  * @return object stdClass object containing all the default post data as attributes
</span><span class="cx">  */
</span><span class="cx"> function get_default_post_to_edit( $post_type = 'post', $create_in_db = false ) {
</span><span class="lines">@@ -5228,7 +5237,9 @@
</span><span class="cx"> 
</span><span class="cx"> /**
</span><span class="cx">  * Returns an array of post format slugs to their translated and pretty display versions
</span><del>- * 
</del><ins>+ *
+ * @since 3.1.0
+ *
</ins><span class="cx">  * @return array The array of translations 
</span><span class="cx">  */
</span><span class="cx"> function get_post_format_strings() {
</span><span class="lines">@@ -5249,6 +5260,8 @@
</span><span class="cx"> /**
</span><span class="cx">  * Returns a pretty, translated version of a post format slug
</span><span class="cx">  * 
</span><ins>+ * @since 3.1.0
+ *
</ins><span class="cx">  * @param string $slug A post format slug
</span><span class="cx">  * @return string The translated post format name
</span><span class="cx">  */
</span></span></pre>
</div>
</div>

</body>
</html>