<!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>[16469] trunk: More param fixes, props duck_.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/16469">16469</a></dd>
<dt>Author</dt> <dd>nacin</dd>
<dt>Date</dt> <dd>2010-11-18 19:12:48 +0000 (Thu, 18 Nov 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>More param fixes, props duck_. see <a href="http://trac.wordpress.org/ticket/14783">#14783</a>.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminincludesclasswplisttablephp">trunk/wp-admin/includes/class-wp-list-table.php</a></li>
<li><a href="#trunkwpadminincludesplugininstallphp">trunk/wp-admin/includes/plugin-install.php</a></li>
<li><a href="#trunkwpincludescachephp">trunk/wp-includes/cache.php</a></li>
<li><a href="#trunkwpincludescategorytemplatephp">trunk/wp-includes/category-template.php</a></li>
<li><a href="#trunkwpincludesclasswpdependenciesphp">trunk/wp-includes/class.wp-dependencies.php</a></li>
<li><a href="#trunkwpincludesclasswpscriptsphp">trunk/wp-includes/class.wp-scripts.php</a></li>
<li><a href="#trunkwpincludesformattingphp">trunk/wp-includes/formatting.php</a></li>
<li><a href="#trunkwpincludesfunctionsphp">trunk/wp-includes/functions.php</a></li>
<li><a href="#trunkwpincludesmsblogsphp">trunk/wp-includes/ms-blogs.php</a></li>
<li><a href="#trunkwpincludesposttemplatephp">trunk/wp-includes/post-template.php</a></li>
<li><a href="#trunkwpincludespostphp">trunk/wp-includes/post.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminincludesclasswplisttablephp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/class-wp-list-table.php (16468 => 16469)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/class-wp-list-table.php        2010-11-18 19:07:59 UTC (rev 16468)
+++ trunk/wp-admin/includes/class-wp-list-table.php        2010-11-18 19:12:48 UTC (rev 16469)
</span><span class="lines">@@ -737,7 +737,7 @@
</span><span class="cx">          * @since 3.1.0
</span><span class="cx">          * @access protected
</span><span class="cx">          *
</span><del>-         * @param $object $item The current item
</del><ins>+         * @param object $item The current item
</ins><span class="cx">          */
</span><span class="cx">         function single_row( $item ) {
</span><span class="cx">                 static $row_class = '';
</span><span class="lines">@@ -754,7 +754,7 @@
</span><span class="cx">          * @since 3.1.0
</span><span class="cx">          * @access protected
</span><span class="cx">          *
</span><del>-         * @param $object $item The current item
</del><ins>+         * @param object $item The current item
</ins><span class="cx">          */
</span><span class="cx">         function single_row_columns( $item ) {
</span><span class="cx">                 list( $columns, $hidden ) = $this-&gt;get_column_info();
</span></span></pre></div>
<a id="trunkwpadminincludesplugininstallphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/plugin-install.php (16468 => 16469)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/plugin-install.php        2010-11-18 19:07:59 UTC (rev 16468)
+++ trunk/wp-admin/includes/plugin-install.php        2010-11-18 19:12:48 UTC (rev 16469)
</span><span class="lines">@@ -157,9 +157,6 @@
</span><span class="cx">  * Display plugin content based on plugin list.
</span><span class="cx">  *
</span><span class="cx">  * @since 2.7.0
</span><del>- *
- * @param array $plugins List of plugins.
- * @param int $total_plugins Number of plugins.
</del><span class="cx">  */
</span><span class="cx"> function display_plugins_table() {
</span><span class="cx">         global $wp_list_table;
</span></span></pre></div>
<a id="trunkwpincludescachephp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/cache.php (16468 => 16469)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/cache.php        2010-11-18 19:07:59 UTC (rev 16468)
+++ trunk/wp-includes/cache.php        2010-11-18 19:12:48 UTC (rev 16469)
</span><span class="lines">@@ -171,8 +171,6 @@
</span><span class="cx">  * this function instructs the backend to reset those keys and perform any cleanup since blog or site IDs have changed since cache init.
</span><span class="cx">  *
</span><span class="cx">  * @since 2.6.0
</span><del>- *
- * @param string|array $groups A group or an array of groups to add
</del><span class="cx">  */
</span><span class="cx"> function wp_cache_reset() {
</span><span class="cx">         global $wp_object_cache;
</span></span></pre></div>
<a id="trunkwpincludescategorytemplatephp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/category-template.php (16468 => 16469)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/category-template.php        2010-11-18 19:07:59 UTC (rev 16468)
+++ trunk/wp-includes/category-template.php        2010-11-18 19:12:48 UTC (rev 16469)
</span><span class="lines">@@ -1174,7 +1174,7 @@
</span><span class="cx">  *
</span><span class="cx">  * @param string|int|array $term Optional. The term name/term_id/slug or array of them to check for.
</span><span class="cx">  * @param string $taxonomy Taxonomy name
</span><del>- * @param int|post object Optional.  Post to check instead of the current post.
</del><ins>+ * @param int|object $post Optional. Post to check instead of the current post.
</ins><span class="cx">  * @return bool True if the current post has any of the given tags (or any tag, if no tag specified).
</span><span class="cx">  */
</span><span class="cx"> function has_term( $term = '', $taxonomy = '', $post = null ) {
</span></span></pre></div>
<a id="trunkwpincludesclasswpdependenciesphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/class.wp-dependencies.php (16468 => 16469)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/class.wp-dependencies.php        2010-11-18 19:07:59 UTC (rev 16468)
+++ trunk/wp-includes/class.wp-dependencies.php        2010-11-18 19:12:48 UTC (rev 16469)
</span><span class="lines">@@ -37,11 +37,11 @@
</span><span class="cx">          *
</span><span class="cx">          * Process the items passed to it or the queue.  Processes all dependencies.
</span><span class="cx">          *
</span><del>-         * @param mixed handles (optional) items to be processed.  (void) processes queue, (string) process that item, (array of strings) process those items
</del><ins>+         * @param mixed $handles (optional) items to be processed. (void) processes queue, (string) process that item, (array of strings) process those items
</ins><span class="cx">          * @return array Items that have been processed
</span><span class="cx">          */
</span><span class="cx">         function do_items( $handles = false, $group = false ) {
</span><del>-                // Print the queue if nothing is passed.  If a string is passed, print that script.  If an array is passed, print those scripts.
</del><ins>+                // Print the queue if nothing is passed. If a string is passed, print that script. If an array is passed, print those scripts.
</ins><span class="cx">                 $handles = false === $handles ? $this-&gt;queue : (array) $handles;
</span><span class="cx">                 $this-&gt;all_deps( $handles );
</span><span class="cx"> 
</span><span class="lines">@@ -72,9 +72,9 @@
</span><span class="cx">          *
</span><span class="cx">          * Recursively builds array of items to process taking dependencies into account.  Does NOT catch infinite loops.
</span><span class="cx">          *
</span><del>-
-         * @param mixed handles Accepts (string) dep name or (array of strings) dep names
-         * @param bool recursion Used internally when function calls itself
</del><ins>+         *
+         * @param mixed $handles Accepts (string) dep name or (array of strings) dep names
+         * @param bool $recursion Used internally when function calls itself
</ins><span class="cx">          */
</span><span class="cx">         function all_deps( $handles, $recursion = false, $group = false ) {
</span><span class="cx">                 if ( !$handles = (array) $handles )
</span><span class="lines">@@ -125,10 +125,10 @@
</span><span class="cx">          *
</span><span class="cx">          * Adds the item only if no item of that name already exists
</span><span class="cx">          *
</span><del>-         * @param string handle Script name
-         * @param string src Script url
-         * @param array deps (optional) Array of script names on which this script depends
-         * @param string ver (optional) Script version (used for cache busting)
</del><ins>+         * @param string $handle Script name
+         * @param string $src Script url
+         * @param array $deps (optional) Array of script names on which this script depends
+         * @param string $ver (optional) Script version (used for cache busting)
</ins><span class="cx">          * @return array Hierarchical array of dependencies
</span><span class="cx">          */
</span><span class="cx">         function add( $handle, $src, $deps = array(), $ver = false, $args = null ) {
</span><span class="lines">@@ -143,9 +143,9 @@
</span><span class="cx">          *
</span><span class="cx">          * Adds data only if script has already been added
</span><span class="cx">          *
</span><del>-         * @param string handle Script name
-         * @param string data_name Name of object in which to store extra data
-         * @param array data Array of extra data
</del><ins>+         * @param string $handle Script name
+         * @param string $data_name Name of object in which to store extra data
+         * @param array $data Array of extra data
</ins><span class="cx">          * @return bool success
</span><span class="cx">          */
</span><span class="cx">         function add_data( $handle, $data_name, $data ) {
</span></span></pre></div>
<a id="trunkwpincludesclasswpscriptsphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/class.wp-scripts.php (16468 => 16469)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/class.wp-scripts.php        2010-11-18 19:07:59 UTC (rev 16468)
+++ trunk/wp-includes/class.wp-scripts.php        2010-11-18 19:12:48 UTC (rev 16469)
</span><span class="lines">@@ -39,8 +39,8 @@
</span><span class="cx">          *
</span><span class="cx">          * Prints the scripts passed to it or the print queue.  Also prints all necessary dependencies.
</span><span class="cx">          *
</span><del>-         * @param mixed handles (optional) Scripts to be printed.  (void) prints queue, (string) prints that script, (array of strings) prints those scripts.
-         * @param int group (optional) If scripts were queued in groups prints this group number.
</del><ins>+         * @param mixed $handles (optional) Scripts to be printed.  (void) prints queue, (string) prints that script, (array of strings) prints those scripts.
+         * @param int $group (optional) If scripts were queued in groups prints this group number.
</ins><span class="cx">          * @return array Scripts that have been printed
</span><span class="cx">          */
</span><span class="cx">         function print_scripts( $handles = false, $group = false ) {
</span><span class="lines">@@ -135,9 +135,9 @@
</span><span class="cx">          *
</span><span class="cx">          * Localizes only if script has already been added
</span><span class="cx">          *
</span><del>-         * @param string handle Script name
-         * @param string object_name Name of JS object to hold l10n info
-         * @param array l10n Array of JS var name =&gt; localized string
</del><ins>+         * @param string $handle Script name
+         * @param string $object_name Name of JS object to hold l10n info
+         * @param array $l10n Array of JS var name =&gt; localized string
</ins><span class="cx">          * @return bool Successful localization
</span><span class="cx">          */
</span><span class="cx">         function localize( $handle, $object_name, $l10n ) {
</span></span></pre></div>
<a id="trunkwpincludesformattingphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/formatting.php (16468 => 16469)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/formatting.php        2010-11-18 19:07:59 UTC (rev 16468)
+++ trunk/wp-includes/formatting.php        2010-11-18 19:12:48 UTC (rev 16469)
</span><span class="lines">@@ -1577,7 +1577,7 @@
</span><span class="cx">  *
</span><span class="cx">  * @since 3.1.0
</span><span class="cx">  * @access private
</span><del>- * @param $match the preg_replace_callback matches array
</del><ins>+ * @param array $match the preg_replace_callback matches array
</ins><span class="cx">  */
</span><span class="cx"> function _wp_iso_convert( $match ) {
</span><span class="cx">         return chr( hexdec( strtolower( $match[1] ) ) );
</span></span></pre></div>
<a id="trunkwpincludesfunctionsphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/functions.php (16468 => 16469)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/functions.php        2010-11-18 19:07:59 UTC (rev 16468)
+++ trunk/wp-includes/functions.php        2010-11-18 19:12:48 UTC (rev 16469)
</span><span class="lines">@@ -4360,8 +4360,8 @@
</span><span class="cx">  * @access private
</span><span class="cx">  *
</span><span class="cx">  * @param callback $callback function that accepts ( ID, $callback_args ) and outputs parent_ID
</span><del>- * @param $start The ID to start the loop check at
- * @param $start_parent the parent_ID of $start to use instead of calling $callback( $start ).  Use null to always use $callback
</del><ins>+ * @param int $start The ID to start the loop check at
+ * @param int $start_parent the parent_ID of $start to use instead of calling $callback( $start ). Use null to always use $callback
</ins><span class="cx">  * @param array $callback_args optional additional arguments to send to $callback
</span><span class="cx">  * @return array IDs of all members of loop
</span><span class="cx">  */
</span><span class="lines">@@ -4384,7 +4384,7 @@
</span><span class="cx">  * @access private
</span><span class="cx">  *
</span><span class="cx">  * @param callback $callback function that accupts ( ID, callback_arg, ... ) and outputs parent_ID
</span><del>- * @param $start The ID to start the loop check at
</del><ins>+ * @param int $start The ID to start the loop check at
</ins><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_args optional additional arguments to send to $callback
</span><span class="cx">  * @param bool $_return_loop Return loop members or just detect presence of loop?
</span></span></pre></div>
<a id="trunkwpincludesmsblogsphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/ms-blogs.php (16468 => 16469)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/ms-blogs.php        2010-11-18 19:07:59 UTC (rev 16468)
+++ trunk/wp-includes/ms-blogs.php        2010-11-18 19:12:48 UTC (rev 16469)
</span><span class="lines">@@ -664,13 +664,17 @@
</span><span class="cx">  *
</span><span class="cx">  * @since MU
</span><span class="cx">  *
</span><del>- * @param $deprecated Not used
</del><ins>+ * @param mixed $deprecated Not used
</ins><span class="cx">  * @param int $start The offset
</span><span class="cx">  * @param int $quantity The maximum number of blogs to retrieve. Default is 40.
</span><span class="cx">  * @return array The list of blogs
</span><span class="cx">  */
</span><span class="cx"> function get_last_updated( $deprecated = '', $start = 0, $quantity = 40 ) {
</span><span class="cx">         global $wpdb;
</span><ins>+        
+        if ( ! empty( $deprecated ) )
+                _deprecated_argument( __FUNCTION__, 'MU' ); // never used
+        
</ins><span class="cx">         return $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' AND last_updated != '0000-00-00 00:00:00' ORDER BY last_updated DESC limit %d, %d&quot;, $wpdb-&gt;siteid, $start, $quantity ) , ARRAY_A );
</span><span class="cx"> }
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkwpincludesposttemplatephp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/post-template.php (16468 => 16469)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/post-template.php        2010-11-18 19:07:59 UTC (rev 16468)
+++ trunk/wp-includes/post-template.php        2010-11-18 19:12:48 UTC (rev 16469)
</span><span class="lines">@@ -675,7 +675,7 @@
</span><span class="cx">  * @since 3.1.0
</span><span class="cx">  * @access private
</span><span class="cx">  *
</span><del>- * @param $i Page number.
</del><ins>+ * @param int $i Page number.
</ins><span class="cx">  * @return string Link.
</span><span class="cx">  */
</span><span class="cx"> function _wp_link_page( $i ) {
</span></span></pre></div>
<a id="trunkwpincludespostphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/post.php (16468 => 16469)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/post.php        2010-11-18 19:07:59 UTC (rev 16468)
+++ trunk/wp-includes/post.php        2010-11-18 19:12:48 UTC (rev 16469)
</span><span class="lines">@@ -5042,7 +5042,8 @@
</span><span class="cx">  *
</span><span class="cx">  * @since 2.0.0
</span><span class="cx">  *
</span><del>- * @param string A post type string, defaults to 'post'.
</del><ins>+ * @param string $post_type A post type string, defaults to 'post'.
+ * @param bool $create_in_db If true then also insert an auto-draft into database
</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></pre>
</div>
</div>

</body>
</html>