Changeset 31219
- Timestamp:
- 01/16/2015 10:43:13 PM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-filesystem-ftpsockets.php
r31216 r31219 16 16 */ 17 17 class WP_Filesystem_ftpsockets extends WP_Filesystem_Base { 18 public $ftp = false; 18 /** 19 * @var ftp 20 */ 21 public $ftp; 19 22 20 23 public function __construct($opt = '') { -
trunk/src/wp-admin/includes/class-wp-filesystem-ssh2.php
r31209 r31219 37 37 38 38 public $link = false; 39 public $sftp_link = false; 39 /** 40 * @var resource 41 */ 42 public $sftp_link; 40 43 public $keys = false; 41 44 -
trunk/src/wp-admin/includes/class-wp-upgrader-skins.php
r31122 r31219 206 206 class Bulk_Upgrader_Skin extends WP_Upgrader_Skin { 207 207 public $in_loop = false; 208 /** 209 * @var string|false 210 */ 208 211 public $error = false; 209 212 -
trunk/src/wp-admin/includes/file.php
r31212 r31219 978 978 * @param boolean $error if the current request has failed to connect 979 979 * @param string $context The directory which is needed access to, The write-test will be performed on this directory by get_filesystem_method() 980 * @param string$extra_fields Extra POST fields which should be checked for to be included in the post.980 * @param array $extra_fields Extra POST fields which should be checked for to be included in the post. 981 981 * @param bool $allow_relaxed_file_ownership Whether to allow Group/World writable. 982 982 * @return boolean False on failure. True on success. -
trunk/src/wp-includes/link-template.php
r31218 r31219 1342 1342 * @since 2.7.0 1343 1343 * 1344 * @param int $link Optional. Bookmark ID.1344 * @param int|stdClass $link Optional. Bookmark ID. 1345 1345 * @return string The edit bookmark link URL. 1346 1346 */ -
trunk/src/wp-includes/query.php
r31212 r31219 1272 1272 * @since 3.1.0 1273 1273 * @access private 1274 * @var bool|string 1274 1275 */ 1275 1276 private $query_vars_hash = false; -
trunk/src/wp-includes/taxonomy.php
r31207 r31219 2972 2972 * @param array|int|string $terms A single term slug, single term id, or array of either term slugs or ids. 2973 2973 * Will replace all existing related terms in this taxonomy. 2974 * @param array |string$taxonomy The context in which to relate the term to the object.2974 * @param array $taxonomy The context in which to relate the term to the object. 2975 2975 * @param bool $append Optional. If false will delete difference of terms. Default false. 2976 2976 * @return array|WP_Error Affected Term IDs. … … 3694 3694 * @since 2.3.0 3695 3695 * 3696 * @param int |array $idTerm object ID3696 * @param int $id Term object ID 3697 3697 * @param string $taxonomy Taxonomy Name 3698 3698 * @return bool|array Empty array if $terms found, but not $taxonomy. False if nothing is in cache for $taxonomy and $id. … … 4258 4258 * @param string $taxonomy Single taxonomy name 4259 4259 * @param int|string|array $terms Optional. Term term_id, name, slug or array of said 4260 * @return bool|WP_Error .WP_Error on input error.4260 * @return bool|WP_Error WP_Error on input error. 4261 4261 */ 4262 4262 function is_object_in_term( $object_id, $taxonomy, $terms = null ) { -
trunk/src/wp-includes/theme.php
r31188 r31219 935 935 * 936 936 * @param string $name Theme modification name. 937 * @param string$value theme modification value.937 * @param mixed $value theme modification value. 938 938 */ 939 939 function set_theme_mod( $name, $value ) {
Note: See TracChangeset
for help on using the changeset viewer.