Changeset 18268
- Timestamp:
- 06/11/2011 04:40:18 AM (15 years ago)
- Location:
- trunk
- Files:
-
- 8 edited
-
wp-admin/includes/class-wp-filesystem-base.php (modified) (1 diff)
-
wp-admin/includes/dashboard.php (modified) (1 diff)
-
wp-admin/includes/update-core.php (modified) (2 diffs)
-
wp-includes/author-template.php (modified) (1 diff)
-
wp-includes/category-template.php (modified) (1 diff)
-
wp-includes/meta.php (modified) (5 diffs)
-
wp-includes/query.php (modified) (2 diffs)
-
wp-includes/theme.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-filesystem-base.php
r17926 r18268 88 88 * Returns the path on the remote filesystem of WP_LANG_DIR 89 89 * 90 * @since 3.2 90 * @since 3.2.0 91 91 * @access public 92 92 * -
trunk/wp-admin/includes/dashboard.php
r18265 r18268 1205 1205 * Check if the user needs a browser update 1206 1206 * 1207 * @since 3.2 1207 * @since 3.2.0 1208 1208 * 1209 1209 * @return array|bool False on failure, array of browser data on success. -
trunk/wp-admin/includes/update-core.php
r18262 r18268 268 268 * Directories should be noted by suffixing it with a trailing slash (/) 269 269 * 270 * @since 3.2 270 * @since 3.2.0 271 271 * @global array $_new_bundled_files 272 272 * @var array … … 472 472 * 473 473 * @ignore 474 * @since 3.2 474 * @since 3.2.0 475 475 * @see copy_dir() 476 476 * -
trunk/wp-includes/author-template.php
r18254 r18268 374 374 * Checks to see if more than one author has published posts. 375 375 * 376 * @since 3.2 376 * @since 3.2.0 377 377 * @return bool Whether or not we have more than one author 378 378 */ -
trunk/wp-includes/category-template.php
r18081 r18268 83 83 } 84 84 85 // Filter name is plural because we return alot of categories not just one85 // Filter name is plural because we return alot of categories (possibly more than #13237) not just one 86 86 return apply_filters( 'get_the_categories', $categories ); 87 87 } -
trunk/wp-includes/meta.php
r18254 r18268 377 377 * Container class for a multiple metadata query 378 378 * 379 * @since 3.2 379 * @since 3.2.0 380 380 */ 381 381 class WP_Meta_Query { … … 391 391 * Default: 'CHAR' 392 392 * 393 * @since 3.2 393 * @since 3.2.0 394 394 * @access public 395 395 * @var array … … 400 400 * The relation between the queries. Can be one of 'AND' or 'OR'. 401 401 * 402 * @since 3.2 402 * @since 3.2.0 403 403 * @access public 404 404 * @var string … … 434 434 * Constructs a meta query based on 'meta_*' query vars 435 435 * 436 * @since 3.2 436 * @since 3.2.0 437 437 * @access public 438 438 * … … 462 462 * Generates SQL clauses to be appended to a main query. 463 463 * 464 * @since 3.2 464 * @since 3.2.0 465 465 * @access public 466 466 * -
trunk/wp-includes/query.php
r18056 r18268 852 852 * Metadata query container 853 853 * 854 * @since 3.2 854 * @since 3.2.0 855 855 * @access public 856 856 * @var object WP_Meta_Query … … 1261 1261 * Set if post thumbnails are cached 1262 1262 * 1263 * @since 3.2 1263 * @since 3.2.0 1264 1264 * @access public 1265 1265 * @var bool -
trunk/wp-includes/theme.php
r17994 r18268 1447 1447 * Get random header image from registered images in theme. 1448 1448 * 1449 * @since 3.2 1449 * @since 3.2.0 1450 1450 * 1451 1451 * @return string Path to header image … … 1477 1477 * Also true if theme has multiple header images registered and no specific header image is chosen. 1478 1478 * 1479 * @since 3.2 1479 * @since 3.2.0 1480 1480 * @uses HEADER_IMAGE 1481 1481 *
Note: See TracChangeset
for help on using the changeset viewer.