<!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>[15842] trunk: Full @since's for 3.1.0.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/15842">15842</a></dd>
<dt>Author</dt> <dd>nacin</dd>
<dt>Date</dt> <dd>2010-10-19 07:38:42 +0000 (Tue, 19 Oct 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Full @since's for 3.1.0.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminincludesdefaultlisttablesphp">trunk/wp-admin/includes/default-list-tables.php</a></li>
<li><a href="#trunkwpincludesfunctionsphp">trunk/wp-includes/functions.php</a></li>
<li><a href="#trunkwpincludeslinktemplatephp">trunk/wp-includes/link-template.php</a></li>
<li><a href="#trunkwpincludespostphp">trunk/wp-includes/post.php</a></li>
<li><a href="#trunkwpincludestaxonomyphp">trunk/wp-includes/taxonomy.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminincludesdefaultlisttablesphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/default-list-tables.php (15841 => 15842)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/default-list-tables.php        2010-10-19 07:35:12 UTC (rev 15841)
+++ trunk/wp-admin/includes/default-list-tables.php        2010-10-19 07:38:42 UTC (rev 15842)
</span><span class="lines">@@ -651,7 +651,7 @@
</span><span class="cx">         /**
</span><span class="cx">          * Outputs the hidden row displayed when inline editing
</span><span class="cx">          *
</span><del>-         * @since 3.1
</del><ins>+         * @since 3.1.0
</ins><span class="cx">          */
</span><span class="cx">         function inline_edit() {
</span><span class="cx">                 global $mode;
</span><span class="lines">@@ -1719,7 +1719,7 @@
</span><span class="cx">         /**
</span><span class="cx">          * Outputs the hidden row displayed when inline editing
</span><span class="cx">          *
</span><del>-         * @since 3.1
</del><ins>+         * @since 3.1.0
</ins><span class="cx">          */
</span><span class="cx">         function inline_edit() {
</span><span class="cx">                 global $tax;
</span></span></pre></div>
<a id="trunkwpincludesfunctionsphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/functions.php (15841 => 15842)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/functions.php        2010-10-19 07:35:12 UTC (rev 15841)
+++ trunk/wp-includes/functions.php        2010-10-19 07:38:42 UTC (rev 15842)
</span><span class="lines">@@ -4341,16 +4341,14 @@
</span><span class="cx"> /**
</span><span class="cx">  * Finds hierarchy loops using a callback function that maps objects to parents.
</span><span class="cx">  *
</span><del>- * @since 3.1
</del><ins>+ * @since 3.1.0
+ * @access private 
</ins><span class="cx">  *
</span><span class="cx">  * @param callback $callback function that accepts ( ID, callback_arg, ... ) and outputs parent_ID
</span><span class="cx">  * @param $start The ID to start the loop check at
</span><span class="cx">  * @param $start_parent the parent_ID of $start to use instead of calling $callback( $start ).  Use null to always use $callback
</span><span class="cx">  * @param array $override an array of ( ID =&gt; parent_ID, ... ) to use instead of $callback
</span><span class="cx">  * @param array $callback_arg optional additional arguments to send to $callback
</span><del>- *
- * @internal
- *
</del><span class="cx">  * @return array IDs of all members of loop
</span><span class="cx">  */
</span><span class="cx"> function wp_find_hierarchy_loop( $callback, $start, $start_parent, $callback_args = array() ) {
</span><span class="lines">@@ -4368,7 +4366,8 @@
</span><span class="cx">  * For every step of the algorithm, the hare takes two steps and the tortoise one.
</span><span class="cx">  * If the hare ever laps the tortoise, there must be a loop.
</span><span class="cx">  *
</span><del>- * @since 3.1
</del><ins>+ * @since 3.1.0
+ * @access private
</ins><span class="cx">  *
</span><span class="cx">  * @param callback $callback function that accupts ( ID, callback_arg, ... ) and outputs parent_ID
</span><span class="cx">  * @param $start The ID to start the loop check at
</span><span class="lines">@@ -4377,9 +4376,6 @@
</span><span class="cx">  * @param bool $_return_loop Return loop members or just detect presence of loop?
</span><span class="cx">  *             Only set to true if you already know the given $start is part of a loop
</span><span class="cx">  *             (otherwise the returned array might include branches)
</span><del>- *
- * @internal
- *
</del><span class="cx">  * @return mixed scalar ID of some arbitrary member of the loop, or array of IDs of all members of loop if $_return_loop
</span><span class="cx">  */
</span><span class="cx"> function wp_find_hierarchy_loop_tortoise_hare( $callback, $start, $override = array(), $callback_args = array(), $_return_loop = false ) {
</span></span></pre></div>
<a id="trunkwpincludeslinktemplatephp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/link-template.php (15841 => 15842)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/link-template.php        2010-10-19 07:35:12 UTC (rev 15841)
+++ trunk/wp-includes/link-template.php        2010-10-19 07:38:42 UTC (rev 15842)
</span><span class="lines">@@ -675,7 +675,7 @@
</span><span class="cx"> /**
</span><span class="cx">  * Retrieve edit term url.
</span><span class="cx">  *
</span><del>- * @since 3.1
</del><ins>+ * @since 3.1.0
</ins><span class="cx">  *
</span><span class="cx">  * @param int $term_id Term ID
</span><span class="cx">  * @param string $taxonomy Taxonomy
</span><span class="lines">@@ -706,7 +706,7 @@
</span><span class="cx"> /**
</span><span class="cx">  * Display or retrieve edit term link with formatting.
</span><span class="cx">  *
</span><del>- * @since 3.1
</del><ins>+ * @since 3.1.0
</ins><span class="cx">  *
</span><span class="cx">  * @param string $link Optional. Anchor text.
</span><span class="cx">  * @param string $before Optional. Display before edit link.
</span></span></pre></div>
<a id="trunkwpincludespostphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/post.php (15841 => 15842)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/post.php        2010-10-19 07:35:12 UTC (rev 15841)
+++ trunk/wp-includes/post.php        2010-10-19 07:38:42 UTC (rev 15842)
</span><span class="lines">@@ -494,8 +494,7 @@
</span><span class="cx"> /**
</span><span class="cx">  *  Check if a post has a particular format
</span><span class="cx">  *
</span><del>- * @since 3.1
- *
</del><ins>+ * @since 3.1.0
</ins><span class="cx">  * @uses has_term()
</span><span class="cx">  * 
</span><span class="cx">  * @param string $format The format to check for
</span><span class="lines">@@ -4803,7 +4802,7 @@
</span><span class="cx"> /**
</span><span class="cx">  * Returns the post's parent's post_ID
</span><span class="cx">  *
</span><del>- * @since 3.1
</del><ins>+ * @since 3.1.0
</ins><span class="cx">  *
</span><span class="cx">  * @param int $post_id
</span><span class="cx">  *
</span><span class="lines">@@ -4822,7 +4821,7 @@
</span><span class="cx">  *
</span><span class="cx">  * Attached to the wp_insert_post_parent filter.
</span><span class="cx">  *
</span><del>- * @since 3.1
</del><ins>+ * @since 3.1.0
</ins><span class="cx">  * @uses wp_find_hierarchy_loop()
</span><span class="cx">  *
</span><span class="cx">  * @param int $post_parent ID of the parent for the post we're checking.
</span></span></pre></div>
<a id="trunkwpincludestaxonomyphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/taxonomy.php (15841 => 15842)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/taxonomy.php        2010-10-19 07:35:12 UTC (rev 15841)
+++ trunk/wp-includes/taxonomy.php        2010-10-19 07:38:42 UTC (rev 15842)
</span><span class="lines">@@ -2899,7 +2899,7 @@
</span><span class="cx"> /**
</span><span class="cx">  * Returns the term's parent's term_ID
</span><span class="cx">  *
</span><del>- * @since 3.1
</del><ins>+ * @since 3.1.0
</ins><span class="cx">  *
</span><span class="cx">  * @param int $term_id
</span><span class="cx">  * @param string $taxonomy
</span><span class="lines">@@ -2919,7 +2919,7 @@
</span><span class="cx">  *
</span><span class="cx">  * Attached to the wp_update_term_parent filter.
</span><span class="cx">  *
</span><del>- * @since 3.1
</del><ins>+ * @since 3.1.0
</ins><span class="cx">  * @uses wp_find_hierarchy_loop()
</span><span class="cx">  *
</span><span class="cx">  * @param int $parent term_id of the parent for the term we're checking.
</span></span></pre>
</div>
</div>

</body>
</html>