Changeset 30682
- Timestamp:
- 12/01/2014 02:16:36 AM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-filesystem-direct.php
r30678 r30682 203 203 /** 204 204 * @param string $file 205 * @return string 205 * @return string|false 206 206 */ 207 207 public function group($file) { -
trunk/src/wp-admin/includes/class-wp-filesystem-ftpext.php
r30678 r30682 124 124 * @param string $file 125 125 * @param string $contents 126 * @param bool| string$mode126 * @param bool|int $mode 127 127 * @return bool 128 128 */ -
trunk/src/wp-admin/includes/class-wp-filesystem-ssh2.php
r30678 r30682 170 170 * @param string $file 171 171 * @param string $contents 172 * @param int $mode172 * @param bool|int $mode 173 173 * @return bool 174 174 */ … … 201 201 /** 202 202 * @param string $file 203 * @param bool$group203 * @param string $group 204 204 * @param bool $recursive 205 205 */ … … 241 241 * @since Unknown 242 242 * 243 * @param string $file Path to the file.244 * @param bool$owner A user name or number.245 * @param bool $recursive Optional. If set True changes file owner recursivly. Defaults to False.243 * @param string $file Path to the file. 244 * @param string|int $owner A user name or number. 245 * @param bool $recursive Optional. If set True changes file owner recursivly. Defaults to False. 246 246 * @return bool|string Returns true on success or false on failure. 247 247 */ -
trunk/src/wp-includes/general-template.php
r30674 r30682 2015 2015 * @param int|WP_Post $post WP_Post object or ID. Default is global $post object. 2016 2016 * @param bool $translate Whether to translate the time string. Default false. 2017 * @return false|string Formatted date string or Unix timestamp. False on failure.2017 * @return false|string|int Formatted date string or Unix timestamp. False on failure. 2018 2018 */ 2019 2019 function get_post_time( $d = 'U', $gmt = false, $post = null, $translate = false ) { -
trunk/src/wp-includes/query.php
r30673 r30682 177 177 * @uses $wp_query 178 178 * 179 * @param int|string|array $attachment Attachment ID, title, slug, or array of such.179 * @param int|string|array|object $attachment Attachment ID, title, slug, or array of such. 180 180 * @return bool 181 181 */
Note: See TracChangeset
for help on using the changeset viewer.