Changeset 47230
- Timestamp:
- 02/10/2020 03:28:20 AM (5 years ago)
- Location:
- trunk/src
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-core-upgrader.php
r47219 r47230 387 387 * @since 3.7.0 388 388 * 389 * @global string $wp_version 390 * @global string $wp_local_package 389 * @global string $wp_version The WordPress version string. 390 * @global string $wp_local_package Locale code of the package. 391 391 * 392 392 * @return bool True if the checksums match, otherwise false. -
trunk/src/wp-admin/includes/translation-install.php
r47207 r47230 155 155 * @since 4.0.0 156 156 * 157 * @global string $wp_local_package 157 * @global string $wp_local_package Locale code of the package. 158 158 * 159 159 * @param array[] $languages Array of available languages (populated via the Translation API). -
trunk/src/wp-admin/includes/update-core.php
r47198 r47230 1381 1381 * @since 3.3.0 1382 1382 * 1383 * @global string $wp_version 1383 * @global string $wp_version The WordPress version string. 1384 1384 * @global string $pagenow 1385 1385 * @global string $action -
trunk/src/wp-admin/install.php
r47218 r47230 224 224 225 225 /** 226 * @global string $wp_version 227 * @global string $required_php_version 228 * @global string $required_mysql_version 226 * @global string $wp_version The WordPress version string. 227 * @global string $required_php_version The required PHP version string. 228 * @global string $required_mysql_version The required MySQL version string. 229 229 */ 230 230 global $wp_version, $required_php_version, $required_mysql_version; … … 291 291 292 292 /** 293 * @global string $wp_local_package 293 * @global string $wp_local_package Locale code of the package. 294 294 * @global WP_Locale $wp_locale WordPress date and time locale object. 295 295 */ -
trunk/src/wp-admin/setup-config.php
r47198 r47230 88 88 * @since 2.3.0 89 89 * 90 * @global string $wp_local_package 90 * @global string $wp_local_package Locale code of the package. 91 91 * @global WP_Locale $wp_locale WordPress date and time locale object. 92 92 * -
trunk/src/wp-admin/update-core.php
r47218 r47230 29 29 * @since 2.7.0 30 30 * 31 * @global string $wp_local_package 31 * @global string $wp_local_package Locale code of the package. 32 32 * @global wpdb $wpdb WordPress database abstraction object. 33 33 * … … 217 217 * @since 2.7.0 218 218 * 219 * @global string $required_php_version 220 * @global string $required_mysql_version 219 * @global string $required_php_version The required PHP version string. 220 * @global string $required_mysql_version The required MySQL version string. 221 221 */ 222 222 function core_upgrade_preamble() { -
trunk/src/wp-admin/upgrade.php
r47198 r47230 37 37 38 38 /** 39 * @global string $wp_version 40 * @global string $required_php_version 41 * @global string $required_mysql_version 39 * @global string $wp_version The WordPress version string. 40 * @global string $required_php_version The required PHP version string. 41 * @global string $required_mysql_version The required MySQL version string. 42 42 */ 43 43 global $wp_version, $required_php_version, $required_mysql_version; -
trunk/src/wp-includes/class-wp-locale.php
r47122 r47230 116 116 * 117 117 * @global string $text_direction 118 * @global string $wp_version 118 * @global string $wp_version The WordPress version string. 119 119 */ 120 120 public function init() { -
trunk/src/wp-includes/general-template.php
r47223 r47230 696 696 * @since 0.71 697 697 * 698 * @global string $wp_version 698 * @global string $wp_version The WordPress version string. 699 699 * 700 700 * @param string $show Optional. Site info to retrieve. Default empty (site name). -
trunk/src/wp-includes/l10n.php
r47219 r47230 23 23 * @since 1.5.0 24 24 * 25 * @global string $locale 26 * @global string $wp_local_package 25 * @global string $locale The current locale. 26 * @global string $wp_local_package Locale code of the package. 27 27 * 28 28 * @return string The locale of the blog or from the {@see 'locale'} hook. -
trunk/src/wp-includes/update.php
r47198 r47230 17 17 * @global string $wp_version Used to check against the newest WordPress version. 18 18 * @global wpdb $wpdb WordPress database abstraction object. 19 * @global string $wp_local_package 19 * @global string $wp_local_package Locale code of the package. 20 20 * 21 21 * @param array $extra_stats Extra statistics to report to the WordPress.org API. … … 252 252 * 253 253 * @since 2.3.0 254 * @global string $wp_version Used to notify the WordPress version.254 * @global string $wp_version The WordPress version string. 255 255 * 256 256 * @param array $extra_stats Extra statistics to report to the WordPress.org API. … … 433 433 * 434 434 * @since 2.7.0 435 * @global string $wp_version The WordPress version string. 435 436 * 436 437 * @param array $extra_stats Extra statistics to report to the WordPress.org API. … … 726 727 * @since 2.8.0 727 728 * 728 * @global string $wp_version 729 * @global string $wp_version The WordPress version string. 729 730 */ 730 731 function _maybe_update_core() { -
trunk/src/wp-includes/version.php
r47018 r47230 10 10 11 11 /** 12 * The WordPress version string 12 * The WordPress version string. 13 13 * 14 14 * @global string $wp_version … … 24 24 25 25 /** 26 * Holds the TinyMCE version 26 * Holds the TinyMCE version. 27 27 * 28 28 * @global string $tinymce_version … … 31 31 32 32 /** 33 * Holds the required PHP version 33 * Holds the required PHP version. 34 34 * 35 35 * @global string $required_php_version … … 38 38 39 39 /** 40 * Holds the required MySQL version 40 * Holds the required MySQL version. 41 41 * 42 42 * @global string $required_mysql_version -
trunk/src/wp-includes/wp-db.php
r47219 r47230 598 598 * @since 2.0.8 599 599 * 600 * @global string $wp_version 600 * @global string $wp_version The WordPress version string. 601 601 * 602 602 * @param string $dbuser MySQL database user … … 3490 3490 * @since 2.5.0 3491 3491 * 3492 * @global string $wp_version 3493 * @global string $required_mysql_version 3492 * @global string $wp_version The WordPress version string. 3493 * @global string $required_mysql_version The required MySQL version string. 3494 3494 * 3495 3495 * @return void|WP_Error
Note: See TracChangeset
for help on using the changeset viewer.