- Timestamp:
- 12/23/2015 06:30:09 AM (9 years ago)
- Location:
- trunk/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/credits.php
r35885 r36069 49 49 * @since 3.2.0 50 50 * 51 * @param string &$display_nameThe contributor's display name, passed by reference.51 * @param string $display_name The contributor's display name, passed by reference. 52 52 * @param string $username The contributor's username. 53 53 * @param string $profiles URL to the contributor's WordPress.org profile page. … … 63 63 * @since 3.2.0 64 64 * 65 * @param string &$data External library data, passed by reference.65 * @param string $data External library data, passed by reference. 66 66 */ 67 67 function _wp_credits_build_object_link( &$data ) { -
trunk/src/wp-includes/cache.php
r35325 r36069 113 113 * @param bool $force Optional. Whether to force an update of the local cache from the persistent 114 114 * cache. Default false. 115 * @param bool &$foundOptional. Whether the key was found in the cache. Disambiguates a return of false,115 * @param bool $found Optional. Whether the key was found in the cache. Disambiguates a return of false, 116 116 * a storable value. Passed by reference. Default null. 117 117 * @return bool|mixed False on failure to retrieve contents or the cache … … 535 535 * @param string $force Optional. Unused. Whether to force a refetch rather than relying on the local 536 536 * cache. Default false. 537 * @param bool &$foundOptional. Whether the key was found in the cache. Disambiguates a return of537 * @param bool $found Optional. Whether the key was found in the cache. Disambiguates a return of 538 538 * false, a storable value. Passed by reference. Default null. 539 539 * @return false|mixed False on failure to retrieve contents or the cache contents on success. -
trunk/src/wp-includes/class-walker-page.php
r35929 r36069 78 78 * @param object $page Page data object. 79 79 * @param int $depth Depth of page. Used for padding. 80 * @param array $args Optional arguments. 80 81 * @param int $current_page Page ID. 81 * @param array $args82 82 */ 83 83 public function start_el( &$output, $page, $depth = 0, $args = array(), $current_page = 0 ) { -
trunk/src/wp-includes/class-wp-http-curl.php
r35939 r36069 327 327 * 328 328 * @param resource $handle cURL handle. 329 * @param string $ headers cURL request headers.329 * @param string $data cURL request body. 330 330 * @return int Total bytes of data written. 331 331 */ -
trunk/src/wp-includes/ms-functions.php
r35725 r36069 2155 2155 * @since 2.8.5 2156 2156 * 2157 * @param string URL2157 * @param string $url URL 2158 2158 * @return string URL with https as the scheme 2159 2159 */ -
trunk/src/wp-includes/post.php
r35903 r36069 4269 4269 * 4270 4270 * @param int $page_id Page ID. 4271 * @param array &$childrenParent-children relations, passed by reference.4272 * @param array &$resultResult, passed by reference.4271 * @param array $children Parent-children relations, passed by reference. 4272 * @param array $result Result, passed by reference. 4273 4273 */ 4274 4274 function _page_traverse_name( $page_id, &$children, &$result ){
Note: See TracChangeset
for help on using the changeset viewer.