More param fixes, props duck_. see #14783.

git-svn-id: https://develop.svn.wordpress.org/trunk@16469 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin
2010-11-18 19:12:48 +00:00
parent b9ca2cd037
commit ccea27cbe7
11 changed files with 32 additions and 32 deletions

View File

@@ -4360,8 +4360,8 @@ function _wp_mysql_week( $column ) {
* @access private
*
* @param callback $callback function that accepts ( ID, $callback_args ) and outputs parent_ID
* @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
* @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
* @param array $callback_args optional additional arguments to send to $callback
* @return array IDs of all members of loop
*/
@@ -4384,7 +4384,7 @@ function wp_find_hierarchy_loop( $callback, $start, $start_parent, $callback_arg
* @access private
*
* @param callback $callback function that accupts ( ID, callback_arg, ... ) and outputs parent_ID
* @param $start The ID to start the loop check at
* @param int $start The ID to start the loop check at
* @param array $override an array of ( ID => parent_ID, ... ) to use instead of $callback
* @param array $callback_args optional additional arguments to send to $callback
* @param bool $_return_loop Return loop members or just detect presence of loop?