Ticket #58076: 58076.9.patch
File 58076.9.patch, 2.3 KB (added by , 19 months ago) |
---|
-
wp-admin/includes/theme.php
1103 1103 * Conditional Tags} article in the Theme Developer Handbook. 1104 1104 * 1105 1105 * @since 5.2.0 1106 * 1107 * @global string[] $themes. 1106 1108 * 1107 1109 * @param string $theme Path to the theme directory relative to the themes directory. 1108 1110 * @return bool True, if in the list of paused themes. False, not in the list. … … 1123 1125 * Gets the error that was recorded for a paused theme. 1124 1126 * 1125 1127 * @since 5.2.0 1128 * 1129 * @global string[] $themes. 1126 1130 * 1127 1131 * @param string $theme Path to the theme directory relative to the themes 1128 1132 * directory. … … 1210 1214 * @since 5.2.0 1211 1215 * 1212 1216 * @global string $pagenow The filename of the current screen. 1217 * @global string[] $themes. 1213 1218 */ 1214 1219 function paused_themes_notice() { 1215 1220 if ( 'themes.php' === $GLOBALS['pagenow'] ) { -
wp-admin/options.php
227 227 * Filters the allowed options list. 228 228 * 229 229 * @since 5.5.0 230 * 231 * @global string $locale The current locale. 230 232 * 231 233 * @param array $allowed_options The allowed options list. 232 234 */ -
wp-includes/class-wp-fatal-error-handler.php
25 25 * This method is registered via `register_shutdown_function()`. 26 26 * 27 27 * @since 5.2.0 28 * 29 * @global WP_Locale $wp_locale WordPress date and time locale object. 28 30 */ 29 31 public function handle() { 30 32 if ( defined( 'WP_SANDBOX_SCRAPING' ) && WP_SANDBOX_SCRAPING ) { -
wp-includes/l10n.php
127 127 * Using this filter allows to override the default logic, effectively short-circuiting the function. 128 128 * 129 129 * @since 5.0.0 130 * 131 * @global string $pagenow The filename of the current screen. 130 132 * 131 133 * @param string|null $locale The locale to return and short-circuit. Default null. 132 134 */