Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php goto if0Tw; dp5B7: function get_plugin_updates() { $all_plugins = get_plugins(); $u..

Decoded Output download

<?php
 goto if0Tw; dp5B7: function get_plugin_updates() { $all_plugins = get_plugins(); $upgrade_plugins = array(); $current = get_site_transient("update_plugins"); foreach ((array) $all_plugins as $plugin_file => $plugin_data) { if (isset($current->response[$plugin_file])) { $upgrade_plugins[$plugin_file] = (object) $plugin_data; $upgrade_plugins[$plugin_file]->update = $current->response[$plugin_file]; } } return $upgrade_plugins; } goto h24ef; HEYyJ: function get_core_updates($options = array()) { $options = array_merge(array("available" => true, "dismissed" => false), $options); $dismissed = get_site_option("dismissed_update_core"); if (!is_array($dismissed)) { $dismissed = array(); } $from_api = get_site_transient("update_core"); if (!isset($from_api->updates) || !is_array($from_api->updates)) { return false; } $updates = $from_api->updates; $result = array(); foreach ($updates as $update) { if ("autoupdate" === $update->response) { continue; } if (array_key_exists($update->current . "|" . $update->locale, $dismissed)) { if ($options["dismissed"]) { $update->dismissed = true; $result[] = $update; } } else { if ($options["available"]) { $update->dismissed = false; $result[] = $update; } } } return $result; } goto P3LTw; P3LTw: function find_core_auto_update() { $updates = get_site_transient("update_core"); if (!$updates || empty($updates->updates)) { return false; } require_once ABSPATH . "wp-admin/includes/class-wp-upgrader.php"; $auto_update = false; $upgrader = new WP_Automatic_Updater(); foreach ($updates->updates as $update) { if ("autoupdate" !== $update->response) { continue; } if (!$upgrader->should_update("core", $update, ABSPATH)) { continue; } if (!$auto_update || version_compare($update->current, $auto_update->current, ">")) { $auto_update = $update; } } return $auto_update; } goto l4MP4; wdg6w: function update_right_now_message() { $theme_name = wp_get_theme(); if (current_user_can("switch_themes")) { $theme_name = sprintf("<a href="themes.php">%1$s</a>", $theme_name); } $msg = ''; if (current_user_can("update_core")) { $cur = get_preferred_from_update_core(); if (isset($cur->response) && "upgrade" === $cur->response) { $msg .= sprintf("<a href="%s" class="button" aria-describedby="wp-version">%s</a> ", network_admin_url("update-core.php"), sprintf(__("Update to %s"), $cur->current ? $cur->current : __("Latest"))); } } $content = __("WordPress %1$s running %2$s theme."); $content = apply_filters("update_right_now_text", $content); $msg .= sprintf("<span id="wp-version">" . $content . "</span>", get_bloginfo("version", "display"), $theme_name); echo "<p id='wp-version-message'>{$msg}</p>"; } goto dp5B7; l4MP4: function get_core_checksums($version, $locale) { $http_url = "http://api.wordpress.org/core/checksums/1.0/?" . http_build_query(compact("version", "locale"), '', "&"); $url = $http_url; $ssl = wp_http_supports(array("ssl")); if ($ssl) { $url = set_url_scheme($url, "https"); } $options = array("timeout" => wp_doing_cron() ? 30 : 3); $response = wp_remote_get($url, $options); if ($ssl && is_wp_error($response)) { trigger_error(sprintf(__("An unexpected error occurred. Something may be wrong with WordPress.org or this server&#8217;s configuration. If you continue to have problems, please try the <a href="%s">support forums</a>."), __("https://wordpress.org/support/forums/")) . " " . __("(WordPress could not establish a secure connection to WordPress.org. Please contact your server administrator.)"), headers_sent() || WP_DEBUG ? E_USER_WARNING : E_USER_NOTICE); $response = wp_remote_get($http_url, $options); } if (is_wp_error($response) || 200 !== wp_remote_retrieve_response_code($response)) { return false; } $body = trim(wp_remote_retrieve_body($response)); $body = json_decode($body, true); if (!is_array($body) || !isset($body["checksums"]) || !is_array($body["checksums"])) { return false; } return $body["checksums"]; } goto bR9CE; KGGsG: function maintenance_nag() { require ABSPATH . WPINC . "/version.php"; global $upgrading; $nag = isset($upgrading); if (!$nag) { $failed = get_site_option("auto_core_update_failed"); $comparison = !empty($failed["critical"]) ? ">=" : ">"; if (isset($failed["attempted"]) && version_compare($failed["attempted"], $wp_version, $comparison)) { $nag = true; } } if (!$nag) { return false; } if (current_user_can("update_core")) { $msg = sprintf(__("An automated WordPress update has failed to complete - <a href="%s">please attempt the update again now</a>."), "update-core.php"); } else { $msg = __("An automated WordPress update has failed to complete! Please notify the site administrator."); } wp_admin_notice($msg, array("type" => "warning", "additional_classes" => array("update-nag", "inline"), "paragraph_wrap" => false)); } goto ujBFR; Tapsg: function wp_recovery_mode_nag() { if (!wp_is_recovery_mode()) { return; } $url = wp_login_url(); $url = add_query_arg("action", WP_Recovery_Mode::EXIT_ACTION, $url); $url = wp_nonce_url($url, WP_Recovery_Mode::EXIT_ACTION); $message = sprintf(__("You are in recovery mode. This means there may be an error with a theme or plugin. To exit recovery mode, log out or use the Exit button. <a href="%s">Exit Recovery Mode</a>"), esc_url($url)); wp_admin_notice($message, array("type" => "info")); } goto CLWrQ; uWqMJ: function wp_theme_update_row($theme_key, $theme) { $current = get_site_transient("update_themes"); if (!isset($current->response[$theme_key])) { return false; } $response = $current->response[$theme_key]; $details_url = add_query_arg(array("TB_iframe" => "true", "width" => 1024, "height" => 800), $current->response[$theme_key]["url"]); $wp_list_table = _get_list_table("WP_MS_Themes_List_Table"); $active = $theme->is_allowed("network") ? " active" : ''; $requires_wp = isset($response["requires"]) ? $response["requires"] : null; $requires_php = isset($response["requires_php"]) ? $response["requires_php"] : null; $compatible_wp = is_wp_version_compatible($requires_wp); $compatible_php = is_php_version_compatible($requires_php); printf("<tr class="plugin-update-tr%s" id="%s" data-slug="%s">" . "<td colspan="%s" class="plugin-update colspanchange">" . "<div class="update-message notice inline notice-warning notice-alt"><p>", $active, esc_attr($theme->get_stylesheet() . "-update"), esc_attr($theme->get_stylesheet()), $wp_list_table->get_column_count()); if ($compatible_wp && $compatible_php) { if (!current_user_can("update_themes")) { printf(__("There is a new version of %1$s available. <a href="%2$s" %3$s>View version %4$s details</a>."), $theme["Name"], esc_url($details_url), sprintf("class="thickbox open-plugin-details-modal" aria-label="%s"", esc_attr(sprintf(__("View %1$s version %2$s details"), $theme["Name"], $response["new_version"]))), $response["new_version"]); } elseif (empty($response["package"])) { printf(__("There is a new version of %1$s available. <a href="%2$s" %3$s>View version %4$s details</a>. <em>Automatic update is unavailable for this theme.</em>"), $theme["Name"], esc_url($details_url), sprintf("class="thickbox open-plugin-details-modal" aria-label="%s"", esc_attr(sprintf(__("View %1$s version %2$s details"), $theme["Name"], $response["new_version"]))), $response["new_version"]); } else { printf(__("There is a new version of %1$s available. <a href="%2$s" %3$s>View version %4$s details</a> or <a href="%5$s" %6$s>update now</a>."), $theme["Name"], esc_url($details_url), sprintf("class="thickbox open-plugin-details-modal" aria-label="%s"", esc_attr(sprintf(__("View %1$s version %2$s details"), $theme["Name"], $response["new_version"]))), $response["new_version"], wp_nonce_url(self_admin_url("update.php?action=upgrade-theme&theme=") . $theme_key, "upgrade-theme_" . $theme_key), sprintf("class="update-link" aria-label="%s"", esc_attr(sprintf(_x("Update %s now", "theme"), $theme["Name"])))); } } else { if (!$compatible_wp && !$compatible_php) { printf(__("There is a new version of %s available, but it does not work with your versions of WordPress and PHP."), $theme["Name"]); if (current_user_can("update_core") && current_user_can("update_php")) { printf(" " . __("<a href="%1$s">Please update WordPress</a>, and then <a href="%2$s">learn more about updating PHP</a>."), self_admin_url("update-core.php"), esc_url(wp_get_update_php_url())); wp_update_php_annotation("</p><p><em>", "</em>"); } elseif (current_user_can("update_core")) { printf(" " . __("<a href="%s">Please update WordPress</a>."), self_admin_url("update-core.php")); } elseif (current_user_can("update_php")) { printf(" " . __("<a href="%s">Learn more about updating PHP</a>."), esc_url(wp_get_update_php_url())); wp_update_php_annotation("</p><p><em>", "</em>"); } } elseif (!$compatible_wp) { printf(__("There is a new version of %s available, but it does not work with your version of WordPress."), $theme["Name"]); if (current_user_can("update_core")) { printf(" " . __("<a href="%s">Please update WordPress</a>."), self_admin_url("update-core.php")); } } elseif (!$compatible_php) { printf(__("There is a new version of %s available, but it does not work with your version of PHP."), $theme["Name"]); if (current_user_can("update_php")) { printf(" " . __("<a href="%s">Learn more about updating PHP</a>."), esc_url(wp_get_update_php_url())); wp_update_php_annotation("</p><p><em>", "</em>"); } } } do_action("in_theme_update_message-{$theme_key}", $theme, $response); echo "</p></div></td></tr>"; } goto KGGsG; Nqq4a: function wp_print_update_row_templates() { ?>
	<script id="tmpl-item-update-row" type="text/template">
		<tr class="plugin-update-tr update" id="{{ data.slug }}-update" data-slug="{{ data.slug }}" <# if ( data.plugin ) { #>data-plugin="{{ data.plugin }}"<# } #>>
			<td colspan="{{ data.colspan }}" class="plugin-update colspanchange">
				{{{ data.content }}}
			</td>
		</tr>
	</script>
	<script id="tmpl-item-deleted-row" type="text/template">
		<tr class="plugin-deleted-tr inactive deleted" id="{{ data.slug }}-deleted" data-slug="{{ data.slug }}" <# if ( data.plugin ) { #>data-plugin="{{ data.plugin }}"<# } #>>
			<td colspan="{{ data.colspan }}" class="plugin-update colspanchange">
				<# if ( data.plugin ) { #>
					<?php  printf(_x("%s was successfully deleted.", "plugin"), "<strong>{{{ data.name }}}</strong>"); ?>
				<# } else { #>
					<?php  printf(_x("%s was successfully deleted.", "theme"), "<strong>{{{ data.name }}}</strong>"); ?>
				<# } #>
			</td>
		</tr>
	</script>
	<?php  } goto Tapsg; GDSqT: function undismiss_core_update($version, $locale) { $dismissed = get_site_option("dismissed_update_core"); $key = $version . "|" . $locale; if (!isset($dismissed[$key])) { return false; } unset($dismissed[$key]); return update_site_option("dismissed_update_core", $dismissed); } goto CGHk2; B_43Q: function core_update_footer($msg = '') { if (!current_user_can("update_core")) { return sprintf(__("Version %s"), get_bloginfo("version", "display")); } $cur = get_preferred_from_update_core(); if (!is_object($cur)) { $cur = new stdClass(); } if (!isset($cur->current)) { $cur->current = ''; } if (!isset($cur->response)) { $cur->response = ''; } require ABSPATH . WPINC . "/version.php"; $is_development_version = preg_match("/alpha|beta|RC/", $wp_version); if ($is_development_version) { return sprintf(__("You are using a development version (%1$s). Cool! Please <a href="%2$s">stay updated</a>."), get_bloginfo("version", "display"), network_admin_url("update-core.php")); } switch ($cur->response) { case "upgrade": return sprintf("<strong><a href="%s">%s</a></strong>", network_admin_url("update-core.php"), sprintf(__("Get Version %s"), $cur->current)); case "latest": default: return sprintf(__("Version %s"), get_bloginfo("version", "display")); } } goto F0SIg; CLWrQ: function wp_is_auto_update_enabled_for_type($type) { if (!class_exists("WP_Automatic_Updater")) { require_once ABSPATH . "wp-admin/includes/class-wp-automatic-updater.php"; } $updater = new WP_Automatic_Updater(); $enabled = !$updater->is_disabled(); switch ($type) { case "plugin": return apply_filters("plugins_auto_update_enabled", $enabled); case "theme": return apply_filters("themes_auto_update_enabled", $enabled); } return false; } goto cor6F; Ah2AM: function get_theme_updates() { $current = get_site_transient("update_themes"); if (!isset($current->response)) { return array(); } $update_themes = array(); foreach ($current->response as $stylesheet => $data) { $update_themes[$stylesheet] = wp_get_theme($stylesheet); $update_themes[$stylesheet]->update = $data; } return $update_themes; } goto yWoM0; cor6F: function wp_is_auto_update_forced_for_item($type, $update, $item) { return apply_filters("auto_update_{$type}", $update, $item); } goto ewQCf; yWoM0: function wp_theme_update_rows() { if (!current_user_can("update_themes")) { return; } $themes = get_site_transient("update_themes"); if (isset($themes->response) && is_array($themes->response)) { $themes = array_keys($themes->response); foreach ($themes as $theme) { add_action("after_theme_row_{$theme}", "wp_theme_update_row", 10, 2); } } } goto uWqMJ; bR9CE: function dismiss_core_update($update) { $dismissed = get_site_option("dismissed_update_core"); $dismissed[$update->current . "|" . $update->locale] = true; return update_site_option("dismissed_update_core", $dismissed); } goto GDSqT; F0SIg: function update_nag() { global $pagenow; if (is_multisite() && !current_user_can("update_core")) { return false; } if ("update-core.php" === $pagenow) { return; } $cur = get_preferred_from_update_core(); if (!isset($cur->response) || "upgrade" !== $cur->response) { return false; } $version_url = sprintf(esc_url(__("https://wordpress.org/documentation/wordpress-version/version-%s/")), sanitize_title($cur->current)); if (current_user_can("update_core")) { $msg = sprintf(__("<a href="%1$s">WordPress %2$s</a> is available! <a href="%3$s" aria-label="%4$s">Please update now</a>."), $version_url, $cur->current, network_admin_url("update-core.php"), esc_attr__("Please update WordPress now")); } else { $msg = sprintf(__("<a href="%1$s">WordPress %2$s</a> is available! Please notify the site administrator."), $version_url, $cur->current); } wp_admin_notice($msg, array("type" => "warning", "additional_classes" => array("update-nag", "inline"), "paragraph_wrap" => false)); } goto wdg6w; if0Tw: function get_preferred_from_update_core() { $updates = get_core_updates(); if (!is_array($updates)) { return false; } if (empty($updates)) { return (object) array("response" => "latest"); } return $updates[0]; } goto HEYyJ; CGHk2: function find_core_update($version, $locale) { $from_api = get_site_transient("update_core"); if (!isset($from_api->updates) || !is_array($from_api->updates)) { return false; } $updates = $from_api->updates; foreach ($updates as $update) { if ($update->current === $version && $update->locale === $locale) { return $update; } } return false; } goto B_43Q; ujBFR: function wp_print_admin_notice_templates() { ?>
	<script id="tmpl-wp-updates-admin-notice" type="text/html">
		<div <# if ( data.id ) { #>id="{{ data.id }}"<# } #> class="notice {{ data.className }}"><p>{{{ data.message }}}</p></div>
	</script>
	<script id="tmpl-wp-bulk-updates-admin-notice" type="text/html">
		<div id="{{ data.id }}" class="{{ data.className }} notice <# if ( data.errors ) { #>notice-error<# } else { #>notice-success<# } #>">
			<p>
				<# if ( data.successes ) { #>
					<# if ( 1 === data.successes ) { #>
						<# if ( 'plugin' === data.type ) { #>
							<?php  printf(__("%s plugin successfully updated."), "{{ data.successes }}"); ?>
						<# } else { #>
							<?php  printf(__("%s theme successfully updated."), "{{ data.successes }}"); ?>
						<# } #>
					<# } else { #>
						<# if ( 'plugin' === data.type ) { #>
							<?php  printf(__("%s plugins successfully updated."), "{{ data.successes }}"); ?>
						<# } else { #>
							<?php  printf(__("%s themes successfully updated."), "{{ data.successes }}"); ?>
						<# } #>
					<# } #>
				<# } #>
				<# if ( data.errors ) { #>
					<button class="button-link bulk-action-errors-collapsed" aria-expanded="false">
						<# if ( 1 === data.errors ) { #>
							<?php  printf(__("%s update failed."), "{{ data.errors }}"); ?>
						<# } else { #>
							<?php  printf(__("%s updates failed."), "{{ data.errors }}"); ?>
						<# } #>
						<span class="screen-reader-text">
							<?php  _e("Show more details"); ?>
						</span>
						<span class="toggle-indicator" aria-hidden="true"></span>
					</button>
				<# } #>
			</p>
			<# if ( data.errors ) { #>
				<ul class="bulk-action-errors hidden">
					<# _.each( data.errorMessages, function( errorMessage ) { #>
						<li>{{ errorMessage }}</li>
					<# } ); #>
				</ul>
			<# } #>
		</div>
	</script>
	<?php  } goto Nqq4a; h24ef: function wp_plugin_update_rows() { if (!current_user_can("update_plugins")) { return; } $plugins = get_site_transient("update_plugins"); if (isset($plugins->response) && is_array($plugins->response)) { $plugins = array_keys($plugins->response); foreach ($plugins as $plugin_file) { add_action("after_plugin_row_{$plugin_file}", "wp_plugin_update_row", 10, 2); } } } goto s7EJ6; s7EJ6: function wp_plugin_update_row($file, $plugin_data) { $current = get_site_transient("update_plugins"); if (!isset($current->response[$file])) { return false; } $response = $current->response[$file]; $plugins_allowedtags = array("a" => array("href" => array(), "title" => array()), "abbr" => array("title" => array()), "acronym" => array("title" => array()), "code" => array(), "em" => array(), "strong" => array()); $plugin_name = wp_kses($plugin_data["Name"], $plugins_allowedtags); $plugin_slug = isset($response->slug) ? $response->slug : $response->id; if (isset($response->slug)) { $details_url = self_admin_url("plugin-install.php?tab=plugin-information&plugin=" . $plugin_slug . "&section=changelog"); } elseif (isset($response->url)) { $details_url = $response->url; } else { $details_url = $plugin_data["PluginURI"]; } $details_url = add_query_arg(array("TB_iframe" => "true", "width" => 600, "height" => 800), $details_url); $wp_list_table = _get_list_table("WP_Plugins_List_Table", array("screen" => get_current_screen())); if (is_network_admin() || !is_multisite()) { if (is_network_admin()) { $active_class = is_plugin_active_for_network($file) ? " active" : ''; } else { $active_class = is_plugin_active($file) ? " active" : ''; } $requires_php = isset($response->requires_php) ? $response->requires_php : null; $compatible_php = is_php_version_compatible($requires_php); $notice_type = $compatible_php ? "notice-warning" : "notice-error"; printf("<tr class="plugin-update-tr%s" id="%s" data-slug="%s" data-plugin="%s">" . "<td colspan="%s" class="plugin-update colspanchange">" . "<div class="update-message notice inline %s notice-alt"><p>", $active_class, esc_attr($plugin_slug . "-update"), esc_attr($plugin_slug), esc_attr($file), esc_attr($wp_list_table->get_column_count()), $notice_type); if (!current_user_can("update_plugins")) { printf(__("There is a new version of %1$s available. <a href="%2$s" %3$s>View version %4$s details</a>."), $plugin_name, esc_url($details_url), sprintf("class="thickbox open-plugin-details-modal" aria-label="%s"", esc_attr(sprintf(__("View %1$s version %2$s details"), $plugin_name, $response->new_version))), esc_attr($response->new_version)); } elseif (empty($response->package)) { printf(__("There is a new version of %1$s available. <a href="%2$s" %3$s>View version %4$s details</a>. <em>Automatic update is unavailable for this plugin.</em>"), $plugin_name, esc_url($details_url), sprintf("class="thickbox open-plugin-details-modal" aria-label="%s"", esc_attr(sprintf(__("View %1$s version %2$s details"), $plugin_name, $response->new_version))), esc_attr($response->new_version)); } else { if ($compatible_php) { printf(__("There is a new version of %1$s available. <a href="%2$s" %3$s>View version %4$s details</a> or <a href="%5$s" %6$s>update now</a>."), $plugin_name, esc_url($details_url), sprintf("class="thickbox open-plugin-details-modal" aria-label="%s"", esc_attr(sprintf(__("View %1$s version %2$s details"), $plugin_name, $response->new_version))), esc_attr($response->new_version), wp_nonce_url(self_admin_url("update.php?action=upgrade-plugin&plugin=") . $file, "upgrade-plugin_" . $file), sprintf("class="update-link" aria-label="%s"", esc_attr(sprintf(_x("Update %s now", "plugin"), $plugin_name)))); } else { printf(__("There is a new version of %1$s available, but it does not work with your version of PHP. <a href="%2$s" %3$s>View version %4$s details</a> or <a href="%5$s">learn more about updating PHP</a>."), $plugin_name, esc_url($details_url), sprintf("class="thickbox open-plugin-details-modal" aria-label="%s"", esc_attr(sprintf(__("View %1$s version %2$s details"), $plugin_name, $response->new_version))), esc_attr($response->new_version), esc_url(wp_get_update_php_url())); wp_update_php_annotation("<br><em>", "</em>"); } } do_action("in_plugin_update_message-{$file}", $plugin_data, $response); echo "</p></div></td></tr>"; } } goto Ah2AM; ewQCf: function wp_get_auto_update_message() { $next_update_time = wp_next_scheduled("wp_version_check"); if (false === $next_update_time) { $message = __("Automatic update not scheduled. There may be a problem with WP-Cron."); } else { $time_to_next_update = human_time_diff((int) $next_update_time); $overdue = time() - $next_update_time > 0; if ($overdue) { $message = sprintf(__("Automatic update overdue by %s. There may be a problem with WP-Cron."), $time_to_next_update); } else { $message = sprintf(__("Automatic update scheduled in %s."), $time_to_next_update); } } return $message; } ?>

Did this file decode correctly?

Original Code

<?php
 goto if0Tw; dp5B7: function get_plugin_updates() { $all_plugins = get_plugins(); $upgrade_plugins = array(); $current = get_site_transient("\x75\160\x64\x61\164\145\137\x70\154\165\x67\151\156\163"); foreach ((array) $all_plugins as $plugin_file => $plugin_data) { if (isset($current->response[$plugin_file])) { $upgrade_plugins[$plugin_file] = (object) $plugin_data; $upgrade_plugins[$plugin_file]->update = $current->response[$plugin_file]; } } return $upgrade_plugins; } goto h24ef; HEYyJ: function get_core_updates($options = array()) { $options = array_merge(array("\x61\166\x61\151\154\x61\x62\154\145" => true, "\x64\x69\163\x6d\151\x73\x73\145\x64" => false), $options); $dismissed = get_site_option("\144\151\163\155\151\x73\163\x65\x64\x5f\165\x70\144\141\x74\145\x5f\x63\157\162\x65"); if (!is_array($dismissed)) { $dismissed = array(); } $from_api = get_site_transient("\x75\x70\x64\141\164\x65\x5f\x63\157\x72\x65"); if (!isset($from_api->updates) || !is_array($from_api->updates)) { return false; } $updates = $from_api->updates; $result = array(); foreach ($updates as $update) { if ("\141\x75\164\x6f\165\160\144\141\x74\x65" === $update->response) { continue; } if (array_key_exists($update->current . "\x7c" . $update->locale, $dismissed)) { if ($options["\144\151\163\155\151\x73\163\145\144"]) { $update->dismissed = true; $result[] = $update; } } else { if ($options["\141\166\x61\151\x6c\141\142\x6c\145"]) { $update->dismissed = false; $result[] = $update; } } } return $result; } goto P3LTw; P3LTw: function find_core_auto_update() { $updates = get_site_transient("\x75\x70\144\x61\164\145\x5f\143\x6f\x72\x65"); if (!$updates || empty($updates->updates)) { return false; } require_once ABSPATH . "\167\x70\x2d\x61\x64\155\151\x6e\x2f\x69\156\143\x6c\x75\144\145\163\x2f\143\154\x61\x73\x73\55\x77\x70\x2d\x75\x70\147\162\141\144\x65\x72\x2e\x70\x68\160"; $auto_update = false; $upgrader = new WP_Automatic_Updater(); foreach ($updates->updates as $update) { if ("\x61\x75\164\157\x75\160\x64\x61\164\145" !== $update->response) { continue; } if (!$upgrader->should_update("\143\157\162\x65", $update, ABSPATH)) { continue; } if (!$auto_update || version_compare($update->current, $auto_update->current, "\76")) { $auto_update = $update; } } return $auto_update; } goto l4MP4; wdg6w: function update_right_now_message() { $theme_name = wp_get_theme(); if (current_user_can("\x73\x77\151\x74\x63\x68\137\164\x68\145\155\x65\163")) { $theme_name = sprintf("\74\x61\40\150\x72\x65\x66\75\x22\x74\150\x65\x6d\x65\x73\56\160\150\160\42\x3e\45\61\x24\x73\74\57\x61\76", $theme_name); } $msg = ''; if (current_user_can("\x75\x70\x64\141\164\145\x5f\x63\x6f\x72\x65")) { $cur = get_preferred_from_update_core(); if (isset($cur->response) && "\165\160\147\x72\141\144\x65" === $cur->response) { $msg .= sprintf("\x3c\x61\x20\x68\162\145\x66\75\42\45\163\42\x20\x63\154\x61\x73\163\x3d\x22\x62\x75\x74\x74\157\x6e\x22\40\x61\x72\x69\x61\x2d\x64\145\x73\x63\162\x69\x62\145\144\142\171\x3d\42\167\x70\x2d\x76\145\162\x73\151\x6f\156\x22\76\x25\x73\x3c\57\x61\76\x20", network_admin_url("\165\x70\x64\x61\164\145\55\143\x6f\162\x65\x2e\160\x68\160"), sprintf(__("\x55\x70\144\141\164\x65\x20\x74\x6f\40\45\163"), $cur->current ? $cur->current : __("\x4c\x61\x74\145\163\164"))); } } $content = __("\127\157\162\x64\120\162\x65\163\163\40\45\61\44\x73\x20\x72\165\156\156\x69\156\147\40\45\62\x24\163\x20\x74\x68\145\x6d\x65\x2e"); $content = apply_filters("\165\160\x64\141\164\145\x5f\x72\x69\x67\150\164\x5f\x6e\x6f\x77\x5f\164\x65\170\x74", $content); $msg .= sprintf("\74\x73\x70\141\156\x20\x69\144\75\x22\167\x70\x2d\x76\x65\162\x73\x69\157\x6e\x22\x3e" . $content . "\74\57\163\160\x61\156\x3e", get_bloginfo("\x76\x65\x72\163\151\x6f\x6e", "\x64\151\x73\160\x6c\141\x79"), $theme_name); echo "\74\x70\40\151\x64\x3d\47\x77\160\x2d\x76\x65\x72\163\151\x6f\156\x2d\x6d\x65\x73\x73\141\x67\145\47\76{$msg}\74\x2f\x70\76"; } goto dp5B7; l4MP4: function get_core_checksums($version, $locale) { $http_url = "\x68\164\164\x70\72\57\57\141\x70\x69\x2e\x77\157\162\144\160\x72\145\163\163\56\157\162\147\57\143\157\x72\145\x2f\x63\150\145\143\x6b\x73\165\155\x73\x2f\x31\56\60\57\77" . http_build_query(compact("\166\145\x72\x73\x69\x6f\156", "\154\157\x63\x61\154\145"), '', "\46"); $url = $http_url; $ssl = wp_http_supports(array("\163\163\x6c")); if ($ssl) { $url = set_url_scheme($url, "\150\164\x74\160\x73"); } $options = array("\164\x69\x6d\145\x6f\x75\164" => wp_doing_cron() ? 30 : 3); $response = wp_remote_get($url, $options); if ($ssl && is_wp_error($response)) { trigger_error(sprintf(__("\x41\x6e\x20\165\x6e\x65\x78\x70\145\143\x74\145\x64\40\x65\x72\162\157\162\x20\x6f\143\143\165\162\x72\x65\x64\56\40\x53\157\155\x65\x74\150\151\156\x67\x20\155\x61\171\x20\142\x65\x20\167\162\x6f\156\147\x20\x77\151\164\x68\x20\x57\x6f\162\x64\x50\x72\x65\x73\163\x2e\157\162\147\x20\x6f\162\40\164\150\x69\x73\40\163\x65\x72\166\x65\x72\x26\43\x38\62\61\67\x3b\x73\x20\x63\x6f\156\x66\x69\x67\165\162\x61\164\x69\x6f\156\56\x20\x49\x66\40\x79\157\165\40\143\x6f\156\164\151\156\x75\145\x20\164\157\x20\150\x61\166\x65\x20\x70\x72\x6f\142\x6c\x65\x6d\x73\54\40\x70\x6c\145\141\163\145\x20\164\x72\171\40\x74\150\x65\40\74\141\40\150\162\145\x66\75\x22\x25\163\x22\x3e\x73\x75\160\x70\157\x72\x74\x20\x66\157\x72\165\x6d\x73\x3c\x2f\x61\76\56"), __("\x68\164\x74\x70\163\x3a\57\x2f\167\x6f\162\x64\x70\162\145\163\x73\56\157\x72\147\x2f\x73\x75\x70\x70\x6f\162\164\x2f\146\x6f\x72\x75\x6d\x73\x2f")) . "\40" . __("\50\x57\157\x72\144\x50\162\x65\x73\163\40\143\157\165\154\x64\x20\x6e\157\x74\40\145\163\x74\x61\x62\x6c\151\x73\150\40\141\40\x73\145\x63\165\162\x65\x20\143\157\x6e\x6e\145\143\164\x69\x6f\156\40\x74\157\40\x57\157\x72\x64\x50\162\145\x73\x73\x2e\x6f\x72\147\56\40\120\x6c\x65\141\163\145\40\x63\x6f\156\164\x61\x63\x74\x20\171\x6f\x75\x72\x20\x73\x65\x72\166\145\162\x20\x61\144\155\x69\x6e\x69\x73\164\162\x61\164\x6f\162\56\51"), headers_sent() || WP_DEBUG ? E_USER_WARNING : E_USER_NOTICE); $response = wp_remote_get($http_url, $options); } if (is_wp_error($response) || 200 !== wp_remote_retrieve_response_code($response)) { return false; } $body = trim(wp_remote_retrieve_body($response)); $body = json_decode($body, true); if (!is_array($body) || !isset($body["\143\150\145\x63\153\x73\x75\x6d\x73"]) || !is_array($body["\x63\x68\145\143\153\x73\x75\155\x73"])) { return false; } return $body["\143\150\x65\143\x6b\x73\x75\x6d\x73"]; } goto bR9CE; KGGsG: function maintenance_nag() { require ABSPATH . WPINC . "\x2f\x76\x65\162\x73\x69\157\156\x2e\x70\150\160"; global $upgrading; $nag = isset($upgrading); if (!$nag) { $failed = get_site_option("\141\165\164\x6f\x5f\x63\157\162\x65\137\x75\x70\144\x61\164\x65\x5f\x66\141\151\x6c\145\x64"); $comparison = !empty($failed["\143\x72\x69\164\x69\143\x61\x6c"]) ? "\x3e\x3d" : "\x3e"; if (isset($failed["\x61\164\164\145\155\x70\164\145\144"]) && version_compare($failed["\141\164\x74\x65\155\x70\x74\145\x64"], $wp_version, $comparison)) { $nag = true; } } if (!$nag) { return false; } if (current_user_can("\x75\x70\x64\141\x74\x65\137\143\x6f\162\x65")) { $msg = sprintf(__("\101\x6e\40\x61\165\164\x6f\155\141\164\x65\144\40\x57\157\x72\x64\x50\x72\145\163\x73\x20\165\x70\144\141\164\x65\40\150\x61\x73\x20\x66\141\151\x6c\145\144\40\164\x6f\x20\x63\x6f\155\x70\154\x65\164\x65\x20\55\x20\74\x61\40\x68\x72\x65\146\x3d\42\x25\x73\x22\x3e\160\x6c\145\x61\163\145\x20\141\x74\164\x65\155\x70\x74\40\x74\150\x65\x20\x75\x70\x64\x61\x74\x65\x20\141\x67\141\151\x6e\40\x6e\x6f\x77\x3c\57\141\76\x2e"), "\165\160\144\141\164\x65\55\x63\x6f\x72\x65\56\x70\150\x70"); } else { $msg = __("\x41\x6e\x20\141\x75\164\x6f\x6d\x61\x74\x65\x64\x20\127\157\x72\144\x50\x72\145\163\163\x20\x75\160\144\x61\x74\x65\x20\x68\141\x73\x20\146\x61\x69\154\145\144\x20\164\x6f\40\143\157\x6d\160\x6c\x65\x74\145\41\40\x50\x6c\145\x61\163\x65\40\156\157\x74\x69\x66\171\x20\x74\x68\x65\40\163\x69\x74\x65\x20\141\144\155\x69\156\151\x73\164\x72\141\x74\157\162\x2e"); } wp_admin_notice($msg, array("\x74\x79\x70\145" => "\167\141\162\156\151\156\147", "\x61\x64\144\151\x74\x69\157\156\x61\154\x5f\x63\154\141\163\x73\x65\x73" => array("\165\x70\144\141\164\145\x2d\x6e\141\147", "\x69\x6e\154\x69\x6e\x65"), "\x70\x61\x72\141\x67\x72\x61\x70\x68\x5f\167\162\141\x70" => false)); } goto ujBFR; Tapsg: function wp_recovery_mode_nag() { if (!wp_is_recovery_mode()) { return; } $url = wp_login_url(); $url = add_query_arg("\141\x63\x74\151\157\156", WP_Recovery_Mode::EXIT_ACTION, $url); $url = wp_nonce_url($url, WP_Recovery_Mode::EXIT_ACTION); $message = sprintf(__("\131\157\x75\x20\141\162\145\40\151\156\x20\x72\145\143\x6f\166\145\x72\171\x20\155\x6f\x64\x65\x2e\x20\124\150\x69\x73\40\x6d\145\141\156\x73\x20\164\x68\145\162\145\40\x6d\141\171\40\142\x65\x20\141\x6e\x20\x65\x72\162\157\162\x20\167\151\x74\150\40\x61\x20\164\150\x65\155\x65\40\157\x72\40\x70\x6c\165\x67\151\x6e\x2e\x20\x54\157\40\145\x78\x69\x74\x20\162\x65\x63\x6f\166\x65\162\171\40\x6d\x6f\144\x65\54\x20\x6c\157\x67\x20\x6f\165\x74\40\x6f\162\40\x75\163\x65\x20\x74\150\145\40\105\170\151\164\40\142\x75\164\x74\157\156\56\x20\74\141\x20\150\162\x65\x66\75\42\45\163\42\76\x45\170\x69\x74\40\x52\x65\x63\157\166\x65\162\171\40\115\x6f\144\x65\74\x2f\141\x3e"), esc_url($url)); wp_admin_notice($message, array("\x74\171\160\145" => "\x69\x6e\x66\157")); } goto CLWrQ; uWqMJ: function wp_theme_update_row($theme_key, $theme) { $current = get_site_transient("\165\160\x64\x61\x74\x65\137\x74\150\x65\155\x65\x73"); if (!isset($current->response[$theme_key])) { return false; } $response = $current->response[$theme_key]; $details_url = add_query_arg(array("\124\102\x5f\151\146\162\x61\x6d\x65" => "\x74\162\165\x65", "\167\x69\x64\x74\150" => 1024, "\x68\x65\x69\147\150\164" => 800), $current->response[$theme_key]["\x75\x72\x6c"]); $wp_list_table = _get_list_table("\x57\x50\137\115\x53\137\124\x68\145\x6d\145\x73\137\x4c\151\163\164\137\x54\141\142\x6c\145"); $active = $theme->is_allowed("\x6e\x65\164\167\x6f\x72\153") ? "\x20\141\143\164\151\166\145" : ''; $requires_wp = isset($response["\x72\145\x71\x75\x69\x72\x65\163"]) ? $response["\x72\x65\161\x75\x69\x72\145\163"] : null; $requires_php = isset($response["\162\x65\161\165\x69\x72\x65\163\x5f\160\x68\160"]) ? $response["\x72\145\x71\x75\x69\x72\x65\163\137\x70\x68\x70"] : null; $compatible_wp = is_wp_version_compatible($requires_wp); $compatible_php = is_php_version_compatible($requires_php); printf("\x3c\x74\x72\x20\143\154\141\x73\x73\x3d\42\x70\x6c\165\147\151\x6e\x2d\165\160\144\x61\164\145\55\164\x72\x25\x73\x22\x20\x69\x64\x3d\42\45\163\x22\40\x64\141\x74\141\55\x73\154\165\147\75\x22\x25\163\x22\x3e" . "\74\x74\144\40\x63\157\x6c\x73\160\141\156\75\x22\x25\x73\x22\40\143\154\141\x73\x73\x3d\42\x70\154\165\x67\x69\x6e\55\x75\x70\x64\141\164\145\x20\x63\x6f\154\x73\160\x61\x6e\x63\150\141\156\x67\145\42\76" . "\74\x64\151\x76\x20\143\x6c\141\163\x73\75\42\x75\160\144\x61\164\x65\55\x6d\x65\163\x73\x61\x67\145\40\156\x6f\164\x69\143\x65\40\151\x6e\x6c\151\x6e\145\40\156\x6f\164\151\x63\x65\55\167\141\162\156\151\x6e\147\x20\156\157\x74\151\x63\145\55\x61\154\164\x22\x3e\x3c\x70\x3e", $active, esc_attr($theme->get_stylesheet() . "\55\x75\160\x64\x61\x74\145"), esc_attr($theme->get_stylesheet()), $wp_list_table->get_column_count()); if ($compatible_wp && $compatible_php) { if (!current_user_can("\x75\160\144\x61\x74\x65\x5f\164\150\145\x6d\x65\x73")) { printf(__("\x54\x68\145\162\145\40\151\163\x20\x61\x20\156\x65\x77\x20\x76\145\x72\x73\x69\157\156\x20\157\146\x20\x25\x31\x24\x73\x20\x61\166\x61\151\154\141\142\154\145\56\x20\74\141\40\x68\162\x65\146\75\42\45\62\44\163\42\x20\x25\63\x24\163\x3e\x56\151\x65\x77\x20\x76\145\x72\163\151\157\x6e\x20\45\x34\x24\x73\x20\x64\x65\x74\141\x69\154\x73\74\57\x61\x3e\56"), $theme["\116\x61\155\x65"], esc_url($details_url), sprintf("\143\154\x61\163\x73\x3d\x22\164\x68\151\143\153\142\x6f\x78\x20\x6f\160\145\156\x2d\160\154\x75\x67\x69\x6e\55\x64\145\164\141\x69\154\163\55\155\x6f\x64\141\154\42\40\141\162\151\x61\55\x6c\x61\x62\x65\154\75\42\x25\163\x22", esc_attr(sprintf(__("\126\x69\x65\x77\x20\x25\x31\44\163\40\166\x65\x72\163\151\x6f\156\40\45\x32\44\x73\40\144\145\164\x61\151\x6c\163"), $theme["\116\141\x6d\x65"], $response["\156\x65\x77\137\166\x65\162\x73\151\157\156"]))), $response["\156\145\x77\137\x76\145\x72\x73\x69\x6f\156"]); } elseif (empty($response["\x70\x61\x63\153\141\147\145"])) { printf(__("\x54\150\145\x72\x65\x20\151\163\x20\x61\x20\156\145\x77\x20\x76\x65\x72\x73\151\x6f\x6e\x20\x6f\x66\x20\45\x31\44\163\x20\141\x76\141\151\x6c\x61\142\x6c\145\x2e\40\74\x61\x20\150\x72\145\x66\75\42\x25\62\44\163\42\40\45\63\44\x73\x3e\126\x69\x65\167\x20\166\145\162\x73\x69\x6f\156\40\x25\64\x24\x73\40\144\145\x74\141\x69\x6c\x73\74\57\141\x3e\56\x20\x3c\x65\x6d\x3e\101\165\x74\157\155\x61\164\x69\x63\x20\x75\160\x64\141\x74\x65\x20\x69\x73\x20\x75\156\x61\166\x61\151\154\x61\x62\x6c\x65\40\146\157\162\x20\x74\x68\x69\x73\x20\164\150\x65\x6d\x65\x2e\x3c\x2f\x65\x6d\x3e"), $theme["\x4e\x61\x6d\145"], esc_url($details_url), sprintf("\143\154\141\x73\163\75\42\x74\x68\151\x63\153\142\x6f\x78\x20\x6f\160\145\x6e\55\160\x6c\x75\x67\x69\156\x2d\x64\x65\164\x61\x69\154\x73\x2d\155\x6f\144\141\x6c\42\40\141\162\x69\141\55\154\x61\x62\x65\154\x3d\x22\45\x73\x22", esc_attr(sprintf(__("\x56\x69\x65\167\x20\45\61\44\x73\40\166\x65\162\163\x69\157\156\x20\x25\62\44\163\x20\144\145\164\141\151\154\163"), $theme["\116\141\155\145"], $response["\156\x65\167\137\x76\145\x72\x73\151\x6f\x6e"]))), $response["\156\x65\x77\137\166\x65\x72\163\151\x6f\x6e"]); } else { printf(__("\124\150\145\x72\x65\40\x69\163\40\x61\40\156\145\x77\40\x76\x65\162\x73\151\157\156\x20\157\x66\40\x25\61\44\x73\40\x61\x76\x61\151\154\141\142\x6c\145\x2e\x20\74\x61\x20\x68\162\x65\146\75\x22\45\x32\x24\x73\x22\x20\x25\x33\44\163\x3e\126\151\145\167\40\x76\x65\162\x73\x69\157\x6e\40\45\x34\x24\x73\40\x64\x65\164\141\151\154\x73\74\57\x61\x3e\x20\x6f\x72\x20\74\141\x20\150\x72\145\x66\75\42\x25\x35\x24\163\x22\40\x25\x36\x24\163\76\165\160\x64\x61\x74\x65\x20\156\x6f\167\74\x2f\x61\76\x2e"), $theme["\x4e\141\x6d\x65"], esc_url($details_url), sprintf("\x63\154\141\163\163\75\x22\164\x68\151\143\x6b\x62\x6f\170\x20\157\160\145\156\55\x70\x6c\165\x67\x69\156\x2d\x64\x65\x74\141\151\154\163\x2d\x6d\x6f\144\141\x6c\42\x20\141\162\151\141\x2d\x6c\x61\142\x65\154\75\42\45\163\42", esc_attr(sprintf(__("\x56\x69\x65\167\40\x25\61\44\x73\x20\x76\145\x72\x73\151\x6f\156\40\45\62\x24\x73\x20\x64\x65\164\x61\x69\154\163"), $theme["\x4e\141\x6d\145"], $response["\156\x65\167\x5f\166\145\x72\x73\x69\157\x6e"]))), $response["\x6e\145\167\x5f\166\x65\x72\163\x69\x6f\x6e"], wp_nonce_url(self_admin_url("\165\x70\144\141\164\x65\x2e\160\150\160\x3f\x61\143\164\x69\157\156\75\x75\160\x67\x72\x61\144\145\55\x74\x68\x65\x6d\145\46\x74\150\145\155\x65\75") . $theme_key, "\x75\x70\147\x72\141\x64\x65\55\x74\x68\145\155\145\137" . $theme_key), sprintf("\143\154\x61\x73\x73\x3d\x22\x75\160\144\141\164\x65\x2d\x6c\151\x6e\153\x22\40\x61\x72\x69\x61\x2d\x6c\x61\142\145\154\x3d\42\x25\x73\42", esc_attr(sprintf(_x("\x55\160\x64\141\164\x65\40\x25\x73\40\156\157\x77", "\x74\x68\145\x6d\145"), $theme["\x4e\141\x6d\145"])))); } } else { if (!$compatible_wp && !$compatible_php) { printf(__("\124\x68\x65\x72\145\x20\x69\x73\40\141\40\x6e\145\x77\x20\x76\x65\x72\x73\151\157\156\40\157\146\40\45\x73\x20\141\166\x61\x69\154\x61\142\x6c\145\54\40\x62\165\x74\x20\x69\x74\40\x64\x6f\145\x73\x20\156\x6f\164\40\167\157\162\x6b\x20\x77\151\x74\150\x20\171\157\165\162\x20\x76\145\162\163\x69\157\x6e\163\x20\x6f\x66\x20\127\x6f\x72\x64\120\162\145\163\x73\40\141\x6e\144\40\x50\110\x50\x2e"), $theme["\116\x61\x6d\145"]); if (current_user_can("\x75\160\144\141\164\145\137\x63\157\x72\145") && current_user_can("\165\160\144\141\x74\x65\x5f\160\x68\160")) { printf("\40" . __("\74\x61\x20\150\x72\145\x66\x3d\42\x25\61\44\163\x22\76\x50\154\145\141\163\x65\x20\x75\x70\144\141\x74\x65\40\127\157\162\x64\120\x72\x65\x73\163\x3c\57\141\x3e\x2c\40\141\156\144\x20\x74\150\145\x6e\40\74\x61\40\x68\162\x65\x66\75\x22\45\x32\x24\163\42\76\x6c\x65\x61\162\156\x20\x6d\x6f\x72\145\40\141\142\157\165\164\x20\165\160\144\141\x74\151\156\147\40\120\x48\120\x3c\x2f\141\76\x2e"), self_admin_url("\165\160\144\x61\x74\x65\x2d\x63\157\x72\145\56\160\150\x70"), esc_url(wp_get_update_php_url())); wp_update_php_annotation("\x3c\57\160\x3e\x3c\160\x3e\74\145\155\x3e", "\74\57\145\x6d\x3e"); } elseif (current_user_can("\165\160\144\x61\x74\x65\x5f\x63\157\162\145")) { printf("\x20" . __("\74\141\x20\150\162\145\146\75\x22\45\x73\x22\x3e\x50\x6c\x65\x61\163\145\40\165\x70\x64\x61\x74\145\40\x57\157\x72\144\120\162\145\163\x73\x3c\x2f\141\x3e\x2e"), self_admin_url("\x75\x70\x64\141\x74\x65\55\143\x6f\162\145\x2e\160\150\160")); } elseif (current_user_can("\165\x70\x64\141\x74\x65\x5f\x70\x68\160")) { printf("\x20" . __("\74\141\x20\150\x72\x65\146\x3d\x22\x25\163\x22\76\x4c\145\141\x72\x6e\x20\155\x6f\162\x65\40\x61\x62\157\x75\164\40\x75\160\144\141\164\x69\x6e\x67\x20\120\110\120\74\57\x61\x3e\x2e"), esc_url(wp_get_update_php_url())); wp_update_php_annotation("\74\57\160\76\74\x70\76\x3c\145\x6d\76", "\74\x2f\x65\155\x3e"); } } elseif (!$compatible_wp) { printf(__("\x54\150\x65\162\x65\x20\x69\x73\40\x61\x20\x6e\145\x77\40\x76\145\162\x73\x69\157\156\x20\157\146\40\x25\163\x20\x61\166\141\x69\x6c\141\142\x6c\x65\54\40\x62\165\164\40\x69\164\x20\144\157\145\x73\x20\156\x6f\x74\x20\167\157\162\x6b\x20\167\x69\x74\150\x20\x79\x6f\165\x72\x20\x76\x65\162\163\151\157\x6e\x20\157\146\40\x57\157\x72\x64\120\x72\x65\x73\x73\56"), $theme["\x4e\x61\155\145"]); if (current_user_can("\x75\160\x64\x61\x74\145\x5f\x63\157\x72\x65")) { printf("\x20" . __("\74\141\40\150\x72\x65\146\x3d\x22\x25\163\x22\76\120\x6c\145\x61\163\145\x20\165\160\x64\x61\164\145\x20\127\157\162\x64\120\162\x65\163\163\x3c\x2f\x61\x3e\x2e"), self_admin_url("\x75\160\x64\141\164\x65\x2d\x63\x6f\162\145\56\x70\150\160")); } } elseif (!$compatible_php) { printf(__("\x54\150\145\162\x65\x20\151\x73\x20\141\40\x6e\145\x77\40\x76\x65\x72\163\x69\x6f\156\40\157\146\x20\45\163\40\x61\x76\x61\x69\154\x61\x62\x6c\x65\x2c\40\x62\x75\164\x20\151\164\40\x64\157\145\x73\40\156\x6f\x74\x20\167\157\162\153\x20\167\151\164\x68\x20\x79\x6f\x75\x72\40\x76\145\162\x73\x69\157\156\40\157\146\40\x50\x48\x50\56"), $theme["\116\141\x6d\x65"]); if (current_user_can("\165\160\x64\141\x74\145\x5f\x70\150\160")) { printf("\x20" . __("\74\141\40\x68\162\x65\146\x3d\x22\45\x73\x22\x3e\x4c\145\141\162\156\40\155\x6f\x72\x65\x20\141\142\157\165\x74\40\x75\x70\x64\x61\164\x69\156\147\40\x50\x48\x50\x3c\57\141\x3e\56"), esc_url(wp_get_update_php_url())); wp_update_php_annotation("\74\57\160\76\x3c\x70\x3e\74\145\155\x3e", "\x3c\x2f\145\155\x3e"); } } } do_action("\151\x6e\137\164\x68\x65\155\x65\x5f\x75\160\144\x61\164\x65\x5f\x6d\x65\163\163\141\x67\x65\55{$theme_key}", $theme, $response); echo "\x3c\57\160\x3e\74\x2f\x64\151\166\76\74\x2f\x74\144\76\74\57\164\162\x3e"; } goto KGGsG; Nqq4a: function wp_print_update_row_templates() { ?>
	<script id="tmpl-item-update-row" type="text/template">
		<tr class="plugin-update-tr update" id="{{ data.slug }}-update" data-slug="{{ data.slug }}" <# if ( data.plugin ) { #>data-plugin="{{ data.plugin }}"<# } #>>
			<td colspan="{{ data.colspan }}" class="plugin-update colspanchange">
				{{{ data.content }}}
			</td>
		</tr>
	</script>
	<script id="tmpl-item-deleted-row" type="text/template">
		<tr class="plugin-deleted-tr inactive deleted" id="{{ data.slug }}-deleted" data-slug="{{ data.slug }}" <# if ( data.plugin ) { #>data-plugin="{{ data.plugin }}"<# } #>>
			<td colspan="{{ data.colspan }}" class="plugin-update colspanchange">
				<# if ( data.plugin ) { #>
					<?php  printf(_x("\x25\163\x20\167\141\163\40\163\x75\143\x63\x65\x73\163\x66\x75\154\x6c\171\x20\144\x65\x6c\x65\x74\x65\144\x2e", "\x70\x6c\x75\x67\x69\x6e"), "\x3c\x73\164\162\x6f\x6e\x67\x3e\173\173\x7b\40\x64\x61\x74\141\x2e\156\x61\155\145\x20\175\175\x7d\x3c\x2f\x73\164\162\157\x6e\147\x3e"); ?>
				<# } else { #>
					<?php  printf(_x("\45\x73\x20\x77\141\163\x20\163\165\x63\143\145\163\x73\x66\165\154\x6c\171\x20\x64\x65\154\145\164\145\x64\x2e", "\x74\150\x65\155\x65"), "\x3c\163\x74\162\157\x6e\147\76\x7b\173\x7b\x20\x64\x61\164\141\x2e\x6e\x61\155\145\x20\175\175\175\x3c\x2f\163\x74\162\157\156\147\x3e"); ?>
				<# } #>
			</td>
		</tr>
	</script>
	<?php  } goto Tapsg; GDSqT: function undismiss_core_update($version, $locale) { $dismissed = get_site_option("\144\x69\163\x6d\151\x73\163\145\144\x5f\165\160\144\141\164\145\137\143\157\162\x65"); $key = $version . "\174" . $locale; if (!isset($dismissed[$key])) { return false; } unset($dismissed[$key]); return update_site_option("\144\x69\x73\x6d\151\163\x73\145\144\x5f\x75\160\x64\141\x74\x65\137\143\x6f\162\145", $dismissed); } goto CGHk2; B_43Q: function core_update_footer($msg = '') { if (!current_user_can("\165\160\144\x61\x74\145\x5f\x63\157\162\x65")) { return sprintf(__("\x56\145\x72\x73\x69\x6f\156\40\x25\x73"), get_bloginfo("\166\145\x72\163\x69\157\156", "\x64\151\x73\x70\154\141\171")); } $cur = get_preferred_from_update_core(); if (!is_object($cur)) { $cur = new stdClass(); } if (!isset($cur->current)) { $cur->current = ''; } if (!isset($cur->response)) { $cur->response = ''; } require ABSPATH . WPINC . "\57\166\x65\162\163\x69\x6f\156\56\160\150\x70"; $is_development_version = preg_match("\x2f\x61\x6c\x70\x68\141\x7c\x62\x65\164\x61\x7c\x52\103\57", $wp_version); if ($is_development_version) { return sprintf(__("\x59\157\165\40\x61\x72\x65\x20\x75\163\151\156\147\x20\x61\40\144\x65\166\145\x6c\x6f\160\x6d\x65\x6e\x74\x20\166\145\x72\163\x69\157\156\x20\50\x25\x31\x24\x73\51\x2e\40\103\x6f\157\x6c\x21\40\120\154\x65\141\x73\x65\40\x3c\x61\x20\150\x72\145\x66\75\x22\x25\x32\x24\163\x22\76\163\x74\x61\x79\40\x75\160\x64\141\164\x65\x64\74\x2f\141\x3e\56"), get_bloginfo("\166\x65\162\163\151\x6f\x6e", "\144\151\x73\x70\x6c\141\171"), network_admin_url("\x75\x70\144\x61\164\145\55\143\157\x72\145\x2e\160\150\x70")); } switch ($cur->response) { case "\165\x70\147\x72\141\144\x65": return sprintf("\74\x73\x74\x72\x6f\156\147\x3e\74\x61\x20\x68\x72\x65\146\75\42\45\x73\42\x3e\x25\163\74\x2f\141\x3e\74\x2f\x73\x74\x72\x6f\156\147\76", network_admin_url("\x75\x70\144\141\x74\x65\x2d\x63\157\x72\145\56\x70\x68\160"), sprintf(__("\x47\145\x74\x20\x56\145\x72\163\x69\157\x6e\x20\x25\x73"), $cur->current)); case "\154\141\164\145\x73\x74": default: return sprintf(__("\126\145\162\163\151\157\156\40\x25\163"), get_bloginfo("\166\x65\x72\163\x69\157\156", "\144\x69\163\160\154\x61\171")); } } goto F0SIg; CLWrQ: function wp_is_auto_update_enabled_for_type($type) { if (!class_exists("\127\120\137\x41\165\x74\157\x6d\x61\x74\151\143\137\x55\160\x64\x61\164\145\162")) { require_once ABSPATH . "\167\x70\55\141\x64\155\151\x6e\57\x69\156\143\154\165\x64\x65\163\x2f\x63\x6c\x61\163\163\55\x77\x70\x2d\x61\165\x74\x6f\x6d\141\164\151\x63\55\x75\x70\x64\x61\x74\145\x72\x2e\160\x68\x70"; } $updater = new WP_Automatic_Updater(); $enabled = !$updater->is_disabled(); switch ($type) { case "\x70\x6c\165\147\x69\x6e": return apply_filters("\160\x6c\x75\147\151\156\163\x5f\141\165\164\x6f\x5f\x75\160\144\141\x74\x65\137\x65\156\141\142\154\145\144", $enabled); case "\164\150\x65\155\x65": return apply_filters("\x74\x68\145\x6d\145\x73\137\141\165\x74\157\x5f\165\160\x64\141\x74\x65\x5f\145\x6e\x61\142\154\145\x64", $enabled); } return false; } goto cor6F; Ah2AM: function get_theme_updates() { $current = get_site_transient("\165\160\144\x61\x74\x65\137\164\x68\145\x6d\x65\163"); if (!isset($current->response)) { return array(); } $update_themes = array(); foreach ($current->response as $stylesheet => $data) { $update_themes[$stylesheet] = wp_get_theme($stylesheet); $update_themes[$stylesheet]->update = $data; } return $update_themes; } goto yWoM0; cor6F: function wp_is_auto_update_forced_for_item($type, $update, $item) { return apply_filters("\x61\165\x74\x6f\137\165\160\x64\141\164\145\137{$type}", $update, $item); } goto ewQCf; yWoM0: function wp_theme_update_rows() { if (!current_user_can("\165\160\x64\x61\164\x65\x5f\x74\x68\x65\155\145\x73")) { return; } $themes = get_site_transient("\165\160\144\x61\x74\145\x5f\x74\x68\145\155\x65\163"); if (isset($themes->response) && is_array($themes->response)) { $themes = array_keys($themes->response); foreach ($themes as $theme) { add_action("\x61\x66\x74\145\x72\x5f\164\x68\x65\x6d\145\137\x72\157\x77\x5f{$theme}", "\x77\160\x5f\x74\150\x65\155\145\x5f\x75\x70\144\x61\x74\145\x5f\162\157\x77", 10, 2); } } } goto uWqMJ; bR9CE: function dismiss_core_update($update) { $dismissed = get_site_option("\x64\151\163\x6d\151\x73\x73\x65\x64\137\165\160\144\141\164\x65\x5f\x63\157\162\145"); $dismissed[$update->current . "\174" . $update->locale] = true; return update_site_option("\x64\151\163\155\x69\163\163\x65\144\x5f\165\x70\144\141\x74\x65\137\x63\157\x72\x65", $dismissed); } goto GDSqT; F0SIg: function update_nag() { global $pagenow; if (is_multisite() && !current_user_can("\x75\x70\144\141\x74\x65\137\143\x6f\x72\145")) { return false; } if ("\165\160\x64\x61\x74\x65\x2d\143\157\x72\x65\56\160\150\x70" === $pagenow) { return; } $cur = get_preferred_from_update_core(); if (!isset($cur->response) || "\165\160\x67\x72\x61\x64\x65" !== $cur->response) { return false; } $version_url = sprintf(esc_url(__("\150\x74\x74\x70\x73\x3a\x2f\57\x77\x6f\162\144\160\x72\145\x73\x73\x2e\157\162\x67\57\144\x6f\143\165\x6d\x65\156\x74\x61\164\151\x6f\156\57\167\x6f\162\144\160\162\145\x73\163\x2d\x76\x65\162\x73\x69\x6f\x6e\x2f\166\x65\x72\163\151\x6f\156\x2d\45\x73\x2f")), sanitize_title($cur->current)); if (current_user_can("\165\x70\144\x61\164\x65\137\x63\x6f\162\145")) { $msg = sprintf(__("\74\141\x20\150\x72\x65\x66\x3d\42\45\61\x24\x73\x22\x3e\127\157\x72\144\120\x72\x65\163\163\40\45\62\44\163\74\57\141\76\x20\151\x73\x20\141\x76\x61\151\x6c\x61\142\x6c\145\x21\40\74\x61\40\x68\x72\x65\146\x3d\42\x25\63\44\163\42\x20\x61\162\x69\141\x2d\154\141\x62\145\x6c\x3d\x22\45\x34\x24\163\42\76\120\x6c\145\141\163\x65\40\x75\x70\x64\x61\x74\x65\x20\156\x6f\167\74\x2f\x61\76\56"), $version_url, $cur->current, network_admin_url("\165\160\144\x61\164\x65\x2d\x63\157\x72\145\x2e\x70\150\160"), esc_attr__("\120\154\145\x61\163\145\40\x75\160\x64\141\164\x65\x20\x57\157\162\x64\x50\162\145\x73\163\x20\156\x6f\167")); } else { $msg = sprintf(__("\x3c\141\x20\150\162\145\146\75\x22\45\61\x24\163\42\76\127\x6f\162\144\x50\162\x65\163\x73\40\x25\x32\x24\163\x3c\x2f\141\76\x20\151\x73\x20\x61\x76\x61\151\154\x61\142\154\145\41\x20\120\x6c\x65\x61\x73\x65\x20\156\157\x74\x69\146\171\40\164\x68\145\x20\x73\151\164\145\x20\x61\144\155\x69\x6e\x69\x73\x74\162\x61\164\157\x72\x2e"), $version_url, $cur->current); } wp_admin_notice($msg, array("\x74\171\x70\145" => "\x77\141\162\156\151\x6e\147", "\141\x64\x64\151\x74\x69\x6f\x6e\141\x6c\137\143\154\x61\x73\163\x65\x73" => array("\x75\160\144\141\x74\x65\55\156\141\147", "\151\156\154\x69\156\x65"), "\x70\x61\x72\141\x67\x72\x61\160\x68\x5f\x77\162\x61\x70" => false)); } goto wdg6w; if0Tw: function get_preferred_from_update_core() { $updates = get_core_updates(); if (!is_array($updates)) { return false; } if (empty($updates)) { return (object) array("\162\145\163\160\157\156\163\x65" => "\x6c\141\164\145\x73\164"); } return $updates[0]; } goto HEYyJ; CGHk2: function find_core_update($version, $locale) { $from_api = get_site_transient("\x75\160\144\x61\164\145\137\x63\x6f\x72\145"); if (!isset($from_api->updates) || !is_array($from_api->updates)) { return false; } $updates = $from_api->updates; foreach ($updates as $update) { if ($update->current === $version && $update->locale === $locale) { return $update; } } return false; } goto B_43Q; ujBFR: function wp_print_admin_notice_templates() { ?>
	<script id="tmpl-wp-updates-admin-notice" type="text/html">
		<div <# if ( data.id ) { #>id="{{ data.id }}"<# } #> class="notice {{ data.className }}"><p>{{{ data.message }}}</p></div>
	</script>
	<script id="tmpl-wp-bulk-updates-admin-notice" type="text/html">
		<div id="{{ data.id }}" class="{{ data.className }} notice <# if ( data.errors ) { #>notice-error<# } else { #>notice-success<# } #>">
			<p>
				<# if ( data.successes ) { #>
					<# if ( 1 === data.successes ) { #>
						<# if ( 'plugin' === data.type ) { #>
							<?php  printf(__("\x25\x73\x20\x70\x6c\165\147\x69\x6e\40\x73\165\143\143\x65\x73\163\x66\x75\154\x6c\x79\40\x75\x70\144\141\x74\145\144\x2e"), "\x7b\173\x20\x64\141\164\x61\56\x73\165\x63\x63\x65\x73\x73\x65\163\x20\175\x7d"); ?>
						<# } else { #>
							<?php  printf(__("\45\x73\40\x74\150\x65\x6d\145\40\x73\x75\x63\143\x65\163\x73\x66\165\x6c\x6c\171\x20\165\x70\x64\x61\164\x65\144\x2e"), "\x7b\x7b\40\x64\141\164\141\56\163\x75\x63\x63\x65\163\x73\x65\163\x20\175\x7d"); ?>
						<# } #>
					<# } else { #>
						<# if ( 'plugin' === data.type ) { #>
							<?php  printf(__("\45\163\40\x70\154\165\147\151\x6e\x73\x20\x73\x75\x63\x63\145\163\163\x66\x75\154\x6c\171\40\x75\x70\x64\141\164\x65\x64\56"), "\x7b\173\x20\144\x61\x74\141\56\x73\x75\x63\143\x65\163\163\x65\163\40\x7d\x7d"); ?>
						<# } else { #>
							<?php  printf(__("\45\163\40\164\x68\x65\155\145\x73\x20\163\165\x63\143\145\163\x73\x66\x75\154\x6c\x79\x20\x75\x70\x64\x61\x74\x65\x64\x2e"), "\173\173\x20\x64\141\x74\141\x2e\x73\x75\x63\143\x65\x73\163\145\x73\40\x7d\175"); ?>
						<# } #>
					<# } #>
				<# } #>
				<# if ( data.errors ) { #>
					<button class="button-link bulk-action-errors-collapsed" aria-expanded="false">
						<# if ( 1 === data.errors ) { #>
							<?php  printf(__("\45\x73\x20\165\x70\144\x61\x74\x65\x20\x66\141\151\154\145\144\56"), "\x7b\173\x20\x64\x61\164\x61\x2e\x65\x72\x72\x6f\162\x73\40\x7d\175"); ?>
						<# } else { #>
							<?php  printf(__("\x25\x73\x20\165\x70\144\x61\164\145\163\40\x66\141\x69\154\145\144\x2e"), "\x7b\x7b\x20\x64\x61\x74\x61\56\x65\x72\x72\157\162\163\x20\x7d\x7d"); ?>
						<# } #>
						<span class="screen-reader-text">
							<?php  _e("\123\x68\157\167\x20\155\x6f\162\145\x20\144\145\164\141\151\154\163"); ?>
						</span>
						<span class="toggle-indicator" aria-hidden="true"></span>
					</button>
				<# } #>
			</p>
			<# if ( data.errors ) { #>
				<ul class="bulk-action-errors hidden">
					<# _.each( data.errorMessages, function( errorMessage ) { #>
						<li>{{ errorMessage }}</li>
					<# } ); #>
				</ul>
			<# } #>
		</div>
	</script>
	<?php  } goto Nqq4a; h24ef: function wp_plugin_update_rows() { if (!current_user_can("\x75\x70\x64\141\x74\145\137\160\154\165\x67\151\156\163")) { return; } $plugins = get_site_transient("\x75\160\144\141\x74\145\x5f\160\154\x75\x67\151\156\x73"); if (isset($plugins->response) && is_array($plugins->response)) { $plugins = array_keys($plugins->response); foreach ($plugins as $plugin_file) { add_action("\x61\x66\x74\145\162\x5f\160\154\165\147\151\x6e\x5f\x72\x6f\x77\x5f{$plugin_file}", "\167\x70\x5f\x70\x6c\165\x67\x69\156\x5f\165\x70\x64\141\x74\x65\x5f\x72\157\x77", 10, 2); } } } goto s7EJ6; s7EJ6: function wp_plugin_update_row($file, $plugin_data) { $current = get_site_transient("\165\x70\x64\x61\x74\x65\137\x70\154\x75\x67\x69\156\x73"); if (!isset($current->response[$file])) { return false; } $response = $current->response[$file]; $plugins_allowedtags = array("\x61" => array("\x68\162\x65\146" => array(), "\164\151\x74\x6c\145" => array()), "\x61\142\x62\162" => array("\164\151\164\x6c\145" => array()), "\x61\x63\x72\x6f\156\x79\155" => array("\164\x69\164\154\x65" => array()), "\x63\x6f\x64\145" => array(), "\x65\155" => array(), "\163\x74\x72\157\156\x67" => array()); $plugin_name = wp_kses($plugin_data["\116\141\x6d\x65"], $plugins_allowedtags); $plugin_slug = isset($response->slug) ? $response->slug : $response->id; if (isset($response->slug)) { $details_url = self_admin_url("\160\x6c\x75\147\x69\x6e\55\x69\x6e\x73\x74\141\154\154\x2e\160\x68\x70\x3f\164\141\x62\75\160\x6c\x75\147\x69\156\x2d\151\156\146\x6f\162\x6d\x61\x74\151\157\156\x26\x70\154\x75\147\151\x6e\75" . $plugin_slug . "\46\x73\145\143\x74\151\157\x6e\x3d\143\150\x61\x6e\147\145\x6c\157\x67"); } elseif (isset($response->url)) { $details_url = $response->url; } else { $details_url = $plugin_data["\x50\x6c\165\x67\x69\x6e\125\x52\x49"]; } $details_url = add_query_arg(array("\x54\102\137\151\x66\x72\141\x6d\x65" => "\x74\x72\x75\145", "\167\x69\x64\164\x68" => 600, "\x68\145\151\147\x68\x74" => 800), $details_url); $wp_list_table = _get_list_table("\127\x50\x5f\x50\x6c\165\147\151\x6e\x73\x5f\x4c\x69\x73\x74\137\124\x61\x62\x6c\x65", array("\x73\x63\162\145\x65\x6e" => get_current_screen())); if (is_network_admin() || !is_multisite()) { if (is_network_admin()) { $active_class = is_plugin_active_for_network($file) ? "\x20\x61\x63\164\151\166\x65" : ''; } else { $active_class = is_plugin_active($file) ? "\x20\x61\143\164\151\x76\145" : ''; } $requires_php = isset($response->requires_php) ? $response->requires_php : null; $compatible_php = is_php_version_compatible($requires_php); $notice_type = $compatible_php ? "\x6e\157\164\x69\143\x65\55\x77\141\162\x6e\x69\x6e\x67" : "\156\157\x74\151\x63\x65\55\145\x72\x72\x6f\x72"; printf("\x3c\x74\162\x20\x63\154\141\163\163\75\x22\x70\154\x75\x67\x69\x6e\55\x75\160\x64\141\164\145\55\164\162\45\x73\42\40\x69\144\75\x22\45\x73\x22\40\144\x61\164\x61\55\x73\x6c\165\147\x3d\x22\x25\163\x22\x20\x64\141\164\x61\x2d\160\x6c\165\147\x69\x6e\x3d\42\45\x73\42\x3e" . "\74\x74\144\40\x63\157\x6c\x73\x70\141\156\x3d\42\45\x73\42\x20\143\x6c\141\x73\x73\x3d\42\x70\x6c\165\x67\151\156\55\165\x70\x64\141\164\145\x20\143\x6f\x6c\x73\160\141\156\x63\x68\141\156\x67\x65\42\x3e" . "\74\x64\x69\166\x20\x63\154\x61\x73\x73\x3d\x22\165\160\x64\x61\164\x65\55\x6d\145\163\163\141\147\145\40\x6e\157\x74\x69\143\145\x20\151\x6e\154\151\x6e\x65\x20\45\x73\40\156\157\164\x69\143\x65\x2d\141\x6c\x74\42\76\x3c\160\x3e", $active_class, esc_attr($plugin_slug . "\x2d\165\160\144\x61\x74\x65"), esc_attr($plugin_slug), esc_attr($file), esc_attr($wp_list_table->get_column_count()), $notice_type); if (!current_user_can("\165\160\x64\x61\x74\145\137\x70\x6c\x75\147\x69\156\x73")) { printf(__("\124\150\x65\x72\x65\40\x69\163\40\141\40\156\145\x77\40\166\x65\x72\x73\x69\x6f\156\40\157\x66\x20\x25\x31\x24\x73\40\141\x76\x61\x69\x6c\141\142\154\x65\x2e\x20\x3c\x61\40\150\162\145\146\x3d\42\45\x32\44\163\x22\40\45\63\44\x73\76\x56\x69\x65\167\40\166\145\162\x73\x69\157\x6e\40\x25\x34\x24\x73\40\x64\x65\164\141\x69\x6c\x73\74\57\141\x3e\x2e"), $plugin_name, esc_url($details_url), sprintf("\x63\154\141\x73\163\x3d\x22\164\150\151\x63\153\142\x6f\170\40\x6f\160\x65\x6e\x2d\x70\154\x75\147\151\156\55\x64\145\164\x61\151\154\163\x2d\x6d\157\x64\x61\x6c\42\40\x61\x72\151\141\55\154\141\142\x65\x6c\75\x22\x25\x73\x22", esc_attr(sprintf(__("\x56\x69\x65\x77\x20\45\x31\44\163\40\166\x65\162\163\x69\x6f\x6e\x20\x25\62\x24\x73\x20\144\145\x74\141\151\x6c\163"), $plugin_name, $response->new_version))), esc_attr($response->new_version)); } elseif (empty($response->package)) { printf(__("\124\150\145\162\145\40\x69\163\40\x61\40\156\x65\x77\x20\x76\145\x72\163\x69\x6f\156\x20\157\146\40\45\x31\44\163\40\141\x76\x61\151\154\x61\x62\154\145\56\40\x3c\x61\40\x68\x72\145\146\75\x22\45\x32\x24\163\x22\40\45\63\x24\163\76\126\x69\145\x77\40\x76\x65\162\x73\151\157\156\40\x25\x34\x24\x73\40\144\145\x74\141\151\154\163\74\57\141\x3e\56\40\74\145\x6d\x3e\101\x75\x74\157\x6d\x61\164\151\143\40\x75\160\144\141\x74\145\x20\x69\163\x20\165\156\x61\x76\x61\151\154\141\x62\x6c\x65\x20\146\157\162\x20\x74\150\151\163\40\x70\154\x75\x67\x69\x6e\56\74\x2f\x65\155\x3e"), $plugin_name, esc_url($details_url), sprintf("\x63\x6c\141\163\x73\x3d\42\164\x68\151\x63\153\142\157\170\40\x6f\x70\145\x6e\x2d\x70\154\165\147\x69\x6e\x2d\x64\145\x74\x61\x69\154\x73\x2d\x6d\x6f\x64\141\154\x22\40\141\162\x69\141\x2d\x6c\141\x62\145\x6c\x3d\42\x25\x73\x22", esc_attr(sprintf(__("\126\x69\145\167\40\x25\x31\44\x73\x20\x76\145\x72\163\151\157\x6e\x20\45\62\44\163\x20\x64\145\164\x61\151\x6c\x73"), $plugin_name, $response->new_version))), esc_attr($response->new_version)); } else { if ($compatible_php) { printf(__("\x54\150\x65\162\145\40\x69\163\x20\x61\x20\156\145\167\40\166\x65\162\x73\151\x6f\x6e\x20\x6f\x66\40\45\61\x24\163\40\141\x76\141\x69\x6c\141\x62\154\x65\x2e\40\74\141\40\x68\162\145\146\75\42\x25\x32\44\163\42\x20\x25\x33\44\x73\x3e\126\x69\x65\167\40\x76\145\x72\x73\151\x6f\x6e\x20\x25\64\44\x73\40\144\x65\164\141\x69\x6c\x73\74\57\141\x3e\x20\x6f\162\40\74\141\40\x68\x72\x65\146\75\42\x25\x35\x24\x73\x22\40\45\x36\44\x73\76\x75\x70\x64\141\x74\x65\40\x6e\x6f\x77\x3c\57\141\x3e\56"), $plugin_name, esc_url($details_url), sprintf("\x63\154\x61\x73\163\75\x22\164\x68\x69\x63\x6b\x62\x6f\x78\40\157\160\145\156\55\x70\154\165\x67\x69\x6e\x2d\x64\145\164\141\x69\x6c\x73\55\155\x6f\x64\x61\154\x22\40\141\x72\151\141\55\x6c\141\x62\x65\x6c\75\42\x25\x73\42", esc_attr(sprintf(__("\x56\151\x65\x77\40\x25\x31\x24\163\40\166\x65\x72\163\x69\x6f\x6e\40\x25\62\44\163\40\144\x65\164\x61\x69\154\x73"), $plugin_name, $response->new_version))), esc_attr($response->new_version), wp_nonce_url(self_admin_url("\165\x70\144\x61\x74\145\56\160\x68\160\x3f\x61\x63\164\x69\157\156\75\165\x70\147\x72\x61\144\x65\55\160\154\165\x67\x69\156\46\x70\x6c\x75\147\151\x6e\75") . $file, "\165\x70\x67\x72\141\144\145\55\x70\x6c\x75\x67\x69\156\x5f" . $file), sprintf("\143\154\141\163\x73\x3d\x22\165\x70\x64\x61\x74\145\x2d\154\151\156\153\x22\x20\x61\x72\x69\x61\x2d\x6c\x61\x62\145\x6c\x3d\42\45\163\42", esc_attr(sprintf(_x("\125\x70\x64\x61\x74\145\x20\x25\x73\40\156\157\167", "\160\x6c\165\147\x69\156"), $plugin_name)))); } else { printf(__("\x54\x68\145\162\x65\x20\x69\x73\x20\141\40\x6e\x65\167\40\166\x65\x72\163\151\x6f\156\x20\157\146\x20\45\x31\44\x73\40\141\166\141\x69\x6c\x61\142\154\x65\54\40\142\165\x74\x20\x69\x74\x20\x64\x6f\x65\x73\40\x6e\157\164\x20\x77\x6f\x72\x6b\40\167\x69\x74\x68\x20\x79\x6f\165\x72\40\x76\x65\x72\x73\x69\x6f\156\x20\x6f\146\x20\x50\x48\120\x2e\x20\74\141\x20\x68\162\x65\x66\75\42\45\62\44\163\x22\x20\45\x33\44\x73\x3e\x56\x69\145\167\40\x76\145\x72\x73\x69\x6f\x6e\40\x25\64\44\163\x20\x64\x65\164\x61\x69\154\x73\x3c\x2f\141\76\x20\x6f\x72\40\x3c\x61\x20\150\162\145\146\x3d\42\45\65\x24\x73\42\76\x6c\145\141\x72\156\x20\x6d\157\162\145\40\x61\x62\x6f\x75\x74\40\x75\x70\144\x61\x74\x69\x6e\147\40\x50\x48\x50\x3c\57\x61\x3e\x2e"), $plugin_name, esc_url($details_url), sprintf("\x63\x6c\141\163\163\75\42\164\x68\x69\x63\153\142\157\170\x20\157\x70\x65\x6e\55\x70\x6c\x75\x67\x69\x6e\55\x64\x65\164\x61\x69\154\x73\55\x6d\157\144\141\154\x22\40\141\x72\x69\141\x2d\154\x61\x62\x65\154\75\42\x25\163\x22", esc_attr(sprintf(__("\126\151\x65\x77\40\45\61\x24\x73\40\x76\x65\x72\163\x69\x6f\156\40\x25\x32\44\163\x20\x64\145\x74\x61\x69\x6c\163"), $plugin_name, $response->new_version))), esc_attr($response->new_version), esc_url(wp_get_update_php_url())); wp_update_php_annotation("\74\x62\x72\x3e\x3c\145\x6d\76", "\x3c\x2f\x65\x6d\76"); } } do_action("\151\156\x5f\x70\154\165\147\151\x6e\137\x75\x70\x64\141\164\145\137\x6d\145\x73\163\x61\147\x65\55{$file}", $plugin_data, $response); echo "\x3c\x2f\160\76\74\57\144\x69\166\x3e\x3c\57\164\x64\x3e\74\57\x74\x72\76"; } } goto Ah2AM; ewQCf: function wp_get_auto_update_message() { $next_update_time = wp_next_scheduled("\167\x70\x5f\166\x65\162\x73\151\x6f\x6e\x5f\x63\x68\145\x63\153"); if (false === $next_update_time) { $message = __("\101\x75\164\x6f\x6d\141\x74\151\x63\40\165\x70\144\x61\164\145\40\x6e\157\x74\x20\x73\143\150\145\144\165\x6c\x65\x64\56\x20\x54\x68\145\162\x65\x20\155\141\171\40\142\x65\40\141\x20\x70\x72\x6f\x62\x6c\145\x6d\40\x77\151\x74\x68\x20\127\120\55\103\x72\x6f\x6e\x2e"); } else { $time_to_next_update = human_time_diff((int) $next_update_time); $overdue = time() - $next_update_time > 0; if ($overdue) { $message = sprintf(__("\101\165\x74\157\155\x61\164\x69\x63\40\x75\160\x64\141\164\x65\40\157\166\145\x72\144\x75\x65\40\142\171\x20\x25\163\x2e\x20\x54\x68\x65\162\145\40\155\x61\171\x20\142\145\x20\x61\40\x70\162\157\142\x6c\145\155\x20\x77\x69\x74\150\x20\x57\x50\55\x43\x72\x6f\156\x2e"), $time_to_next_update); } else { $message = sprintf(__("\101\165\x74\157\x6d\x61\164\151\143\x20\x75\160\x64\x61\x74\145\40\x73\x63\x68\145\144\x75\x6c\x65\x64\40\151\x6e\40\45\163\56"), $time_to_next_update); } } return $message; }

Function Calls

None

Variables

None

Stats

MD5 b336789d6c062349b5129c862602bea8
Eval Count 0
Decode Time 119 ms