<!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>[15344] trunk: Deprecated doc cleanup.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/15344">15344</a></dd>
<dt>Author</dt> <dd>nacin</dd>
<dt>Date</dt> <dd>2010-06-28 10:11:41 +0000 (Mon, 28 Jun 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Deprecated doc cleanup.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminincludesdeprecatedphp">trunk/wp-admin/includes/deprecated.php</a></li>
<li><a href="#trunkwpincludesdeprecatedphp">trunk/wp-includes/deprecated.php</a></li>
<li><a href="#trunkwpincludesmsdeprecatedphp">trunk/wp-includes/ms-deprecated.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminincludesdeprecatedphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/deprecated.php (15343 => 15344)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/deprecated.php        2010-06-27 20:14:30 UTC (rev 15343)
+++ trunk/wp-admin/includes/deprecated.php        2010-06-28 10:11:41 UTC (rev 15344)
</span><span class="lines">@@ -32,7 +32,7 @@
</span><span class="cx">  *
</span><span class="cx">  */
</span><span class="cx"> function documentation_link() {
</span><del>-        _deprecated_function( __FUNCTION__, '2.5', '' );
</del><ins>+        _deprecated_function( __FUNCTION__, '2.5' );
</ins><span class="cx">         return;
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="lines">@@ -58,7 +58,7 @@
</span><span class="cx">  * {@internal Missing Short Description}}
</span><span class="cx">  *
</span><span class="cx">  * @since unknown
</span><del>- * @deprecated unknown
</del><ins>+ * @deprecated 2.6.0
</ins><span class="cx">  * @deprecated Use wp_category_checklist()
</span><span class="cx">  * @see wp_category_checklist()
</span><span class="cx">  *
</span><span class="lines">@@ -67,7 +67,7 @@
</span><span class="cx">  * @param unknown_type $popular_ids
</span><span class="cx">  */
</span><span class="cx"> function dropdown_categories( $default = 0, $parent = 0, $popular_ids = array() ) {
</span><del>-        _deprecated_function( __FUNCTION__, '0.0', 'wp_category_checklist()' );
</del><ins>+        _deprecated_function( __FUNCTION__, '2.6', 'wp_category_checklist()' );
</ins><span class="cx">         global $post_ID;
</span><span class="cx">         wp_category_checklist( $post_ID );
</span><span class="cx"> }
</span><span class="lines">@@ -76,14 +76,14 @@
</span><span class="cx">  * {@internal Missing Short Description}}
</span><span class="cx">  *
</span><span class="cx">  * @since unknown
</span><del>- * @deprecated unknown
</del><ins>+ * @deprecated 2.6.0
</ins><span class="cx">  * @deprecated Use wp_link_category_checklist()
</span><span class="cx">  * @see wp_link_category_checklist()
</span><span class="cx">  *
</span><span class="cx">  * @param unknown_type $default
</span><span class="cx">  */
</span><span class="cx"> function dropdown_link_categories( $default = 0 ) {
</span><del>-        _deprecated_function( __FUNCTION__, '0.0', 'wp_link_category_checklist()' );
</del><ins>+        _deprecated_function( __FUNCTION__, '2.6', 'wp_link_category_checklist()' );
</ins><span class="cx">         global $link_id;
</span><span class="cx">         wp_link_category_checklist( $link_id );
</span><span class="cx"> }
</span></span></pre></div>
<a id="trunkwpincludesdeprecatedphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/deprecated.php (15343 => 15344)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/deprecated.php        2010-06-27 20:14:30 UTC (rev 15343)
+++ trunk/wp-includes/deprecated.php        2010-06-28 10:11:41 UTC (rev 15344)
</span><span class="lines">@@ -430,7 +430,7 @@
</span><span class="cx">  * @return bool|null
</span><span class="cx">  */
</span><span class="cx"> function wp_get_linksbyname($category, $args = '') {
</span><del>-        _deprecated_function(__FUNCTION__, '0.0', 'wp_list_bookmarks()');
</del><ins>+        _deprecated_function(__FUNCTION__, '2.1', 'wp_list_bookmarks()');
</ins><span class="cx"> 
</span><span class="cx">         $defaults = array(
</span><span class="cx">                 'after' =&gt; '&lt;br /&gt;',
</span><span class="lines">@@ -875,7 +875,7 @@
</span><span class="cx">  * @param string $file
</span><span class="cx">  */
</span><span class="cx"> function permalink_single_rss($deprecated = '') {
</span><del>-        _deprecated_function( __FUNCTION__, '0.0', 'the_permalink_rss()' );
</del><ins>+        _deprecated_function( __FUNCTION__, '2.3', 'the_permalink_rss()' );
</ins><span class="cx">         the_permalink_rss();
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="lines">@@ -892,7 +892,7 @@
</span><span class="cx">  * @return null|string
</span><span class="cx">  */
</span><span class="cx"> function wp_get_links($args = '') {
</span><del>-        _deprecated_function( __FUNCTION__, '0.0', 'wp_list_bookmarks()' );
</del><ins>+        _deprecated_function( __FUNCTION__, '2.1', 'wp_list_bookmarks()' );
</ins><span class="cx"> 
</span><span class="cx">         if ( strpos( $args, '=' ) === false ) {
</span><span class="cx">                 $cat_id = $args;
</span></span></pre></div>
<a id="trunkwpincludesmsdeprecatedphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/ms-deprecated.php (15343 => 15344)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/ms-deprecated.php        2010-06-27 20:14:30 UTC (rev 15343)
+++ trunk/wp-includes/ms-deprecated.php        2010-06-28 10:11:41 UTC (rev 15344)
</span><span class="lines">@@ -141,10 +141,10 @@
</span><span class="cx"> /**
</span><span class="cx">  * @since MU
</span><span class="cx">  * @deprecated 3.0.0
</span><del>- * @deprecated Don't use this, really.
</del><ins>+ * @deprecated No alternative available. For performance reasons this function is not recommended.
</ins><span class="cx">  */
</span><span class="cx"> function get_blog_list( $start = 0, $num = 10, $deprecated = '' ) {
</span><del>-        _deprecated_function( __FUNCTION__, '3.0', &quot;Don't use this, really.&quot; );
</del><ins>+        _deprecated_function( __FUNCTION__, '3.0' );
</ins><span class="cx"> 
</span><span class="cx">         global $wpdb;
</span><span class="cx">         $blogs = $wpdb-&gt;get_results( $wpdb-&gt;prepare(&quot;SELECT blog_id, domain, path FROM $wpdb-&gt;blogs WHERE site_id = %d AND public = '1' AND archived = '0' AND mature = '0' AND spam = '0' AND deleted = '0' ORDER BY registered DESC&quot;, $wpdb-&gt;siteid), ARRAY_A );
</span><span class="lines">@@ -168,10 +168,10 @@
</span><span class="cx"> /**
</span><span class="cx">  * @since MU
</span><span class="cx">  * @deprecated 3.0.0
</span><del>- * @deprecated Don't use this, really.
</del><ins>+ * @deprecated No alternative available. For performance reasons this function is not recommended.
</ins><span class="cx">  */
</span><span class="cx"> function get_most_active_blogs( $num = 10, $display = true ) {
</span><del>-        _deprecated_function( __FUNCTION__, '3.0', &quot;Don't use this, really.&quot; );
</del><ins>+        _deprecated_function( __FUNCTION__, '3.0' );
</ins><span class="cx"> 
</span><span class="cx">         $blogs = get_blog_list( 0, 'all', false ); // $blog_id -&gt; $details
</span><span class="cx">         if ( is_array( $blogs ) ) {
</span></span></pre>
</div>
</div>

</body>
</html>