2007-08-17 12:33:52 +02:00
< ? php
2008-10-10 20:21:16 +02:00
/**
* WordPress Administration Update API
*
* @ package WordPress
* @ subpackage Admin
*/
2007-08-17 12:33:52 +02:00
2008-03-11 17:13:07 +01:00
// The admin side of our 1.1 update system
2007-08-17 12:33:52 +02:00
2008-10-31 19:51:06 +01:00
/**
* Selects the first update version from the update_core option
*
* @ return object the response from the API
*/
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 ];
}
/**
* Get available core updates
*
* @ param array $options Set $options [ 'dismissed' ] to true to show dismissed upgrades too ,
* set $options [ 'available' ] to false to skip not - dimissed updates .
* @ return array Array of the update objects
*/
function get_core_updates ( $options = array () ) {
$options = array_merge ( array ( 'available' => true , 'dismissed' => false ), $options );
$dismissed = get_option ( 'dismissed_update_core' );
if ( ! is_array ( $dismissed ) ) $dismissed = array ();
$from_api = get_option ( 'update_core' );
2008-11-04 18:12:03 +01:00
if ( empty ( $from_api ) )
return false ;
if ( ! is_array ( $from_api -> updates ) ) return false ;
$updates = $from_api -> updates ;
if ( ! is_array ( $updates ) ) return false ;
2008-10-31 19:51:06 +01:00
$result = array ();
2008-11-04 18:12:03 +01:00
foreach ( $updates as $update ) {
2008-10-31 19:51:06 +01:00
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 ;
}
function dismiss_core_update ( $update ) {
$dismissed = get_option ( 'dismissed_update_core' );
$dismissed [ $update -> current . '|' . $update -> locale ] = true ;
return update_option ( 'dismissed_update_core' , $dismissed );
}
function undismiss_core_update ( $version , $locale ) {
$dismissed = get_option ( 'dismissed_update_core' );
$key = $version . '|' . $locale ;
if ( ! isset ( $dismissed [ $key ] ) ) return false ;
unset ( $dismissed [ $key ] );
return update_option ( 'dismissed_update_core' , $dismissed );
}
function find_core_update ( $version , $locale ) {
$from_api = get_option ( 'update_core' );
2008-11-04 18:12:03 +01:00
if ( ! is_array ( $from_api -> updates ) ) return false ;
$updates = $from_api -> updates ;
foreach ( $updates as $update ) {
2008-10-31 19:51:06 +01:00
if ( $update -> current == $version && $update -> locale == $locale )
return $update ;
}
return false ;
}
2008-01-04 20:36:34 +01:00
function core_update_footer ( $msg = '' ) {
2007-08-30 20:21:03 +02:00
if ( ! current_user_can ( 'manage_options' ) )
return sprintf ( '| ' . __ ( 'Version %s' ), $GLOBALS [ 'wp_version' ] );
2008-10-31 19:51:06 +01:00
$cur = get_preferred_from_update_core ();
2008-08-08 19:05:10 +02:00
if ( ! isset ( $cur -> current ) )
$cur -> current = '' ;
if ( ! isset ( $cur -> url ) )
$cur -> url = '' ;
2007-08-17 12:33:52 +02:00
2008-11-15 19:41:27 +01:00
if ( ! isset ( $cur -> response ) )
$cur -> response = '' ;
2007-08-17 12:33:52 +02:00
switch ( $cur -> response ) {
case 'development' :
2008-11-06 04:31:41 +01:00
return sprintf ( __ ( 'You are using a development version (%1$s). Cool! Please <a href="%2$s">stay updated</a>.' ), $GLOBALS [ 'wp_version' ], 'update-core.php' );
2007-08-17 12:33:52 +02:00
break ;
case 'upgrade' :
2008-03-11 17:13:07 +01:00
if ( current_user_can ( 'manage_options' ) ) {
2008-11-06 04:31:41 +01:00
return sprintf ( '<strong>' . __ ( '<a href="%1$s">Get Version %2$s</a>' ) . '</strong>' , 'update-core.php' , $cur -> current );
2008-03-11 17:13:07 +01:00
break ;
}
2007-08-17 12:33:52 +02:00
case 'latest' :
2007-08-30 18:25:50 +02:00
default :
2008-10-22 00:27:41 +02:00
return sprintf ( __ ( 'Version %s' ), $GLOBALS [ 'wp_version' ] );
2007-08-17 12:33:52 +02:00
break ;
}
}
add_filter ( 'update_footer' , 'core_update_footer' );
function update_nag () {
2008-11-13 22:10:53 +01:00
global $pagenow ;
if ( 'update-core.php' == $pagenow )
return ;
2008-10-31 19:51:06 +01:00
$cur = get_preferred_from_update_core ();
2007-08-20 09:01:15 +02:00
2007-08-30 20:21:03 +02:00
if ( ! isset ( $cur -> response ) || $cur -> response != 'upgrade' )
return false ;
2007-08-20 09:01:15 +02:00
2007-08-30 20:21:03 +02:00
if ( current_user_can ( 'manage_options' ) )
2008-11-06 04:31:41 +01:00
$msg = sprintf ( __ ( 'WordPress %1$s is available! <a href="%2$s">Please update now</a>.' ), $cur -> current , 'update-core.php' );
2007-08-30 20:21:03 +02:00
else
2008-08-09 00:49:35 +02:00
$msg = sprintf ( __ ( 'WordPress %1$s is available! Please notify the site administrator.' ), $cur -> current );
2007-08-30 20:21:03 +02:00
echo " <div id='update-nag'> $msg </div> " ;
2007-08-17 12:33:52 +02:00
}
2008-11-10 19:17:47 +01:00
add_action ( 'admin_notices' , 'update_nag' , 3 );
2007-08-17 12:33:52 +02:00
2008-03-11 17:13:07 +01:00
// Called directly from dashboard
function update_right_now_message () {
2008-10-31 19:51:06 +01:00
$cur = get_preferred_from_update_core ();
2008-03-11 17:13:07 +01:00
2008-10-31 05:23:17 +01:00
$msg = sprintf ( __ ( 'You are using <span class="b">WordPress %s</span>.' ), $GLOBALS [ 'wp_version' ] );
2008-03-11 17:13:07 +01:00
if ( isset ( $cur -> response ) && $cur -> response == 'upgrade' && current_user_can ( 'manage_options' ) )
2008-11-06 04:31:41 +01:00
$msg .= " <a href='update-core.php' class='button'> " . sprintf ( __ ( 'Update to %s' ), $cur -> current ? $cur -> current : __ ( 'Latest' ) ) . '</a>' ;
2008-03-11 17:13:07 +01:00
echo " <span id='wp-version-message'> $msg </span> " ;
}
2008-06-04 20:09:31 +02:00
function wp_plugin_update_row ( $file , $plugin_data ) {
2007-08-22 12:48:48 +02:00
$current = get_option ( 'update_plugins' );
if ( ! isset ( $current -> response [ $file ] ) )
return false ;
$r = $current -> response [ $file ];
2008-08-04 23:01:09 +02:00
$details_url = admin_url ( 'plugin-install.php?tab=plugin-information&plugin=' . $r -> slug . '&TB_iframe=true&width=600&height=800' );
2008-06-04 20:09:31 +02:00
echo '<tr><td colspan="5" class="plugin-update">' ;
2008-06-06 21:21:35 +02:00
if ( ! current_user_can ( 'update_plugins' ) )
2008-08-04 23:01:09 +02:00
printf ( __ ( 'There is a new version of %1$s available. <a href="%2$s" class="thickbox" title="%1$s">View version %3$s Details</a>.' ), $plugin_data [ 'Name' ], $details_url , $r -> new_version );
2008-03-21 00:54:17 +01:00
else if ( empty ( $r -> package ) )
2008-08-04 23:01:09 +02:00
printf ( __ ( 'There is a new version of %1$s available. <a href="%2$s" class="thickbox" title="%1$s">View version %3$s Details</a> <em>automatic upgrade unavailable for this plugin</em>.' ), $plugin_data [ 'Name' ], $details_url , $r -> new_version );
2008-03-21 00:43:54 +01:00
else
2008-08-04 23:01:09 +02:00
printf ( __ ( 'There is a new version of %1$s available. <a href="%2$s" class="thickbox" title="%1$s">View version %3$s Details</a> or <a href="%4$s">upgrade automatically</a>.' ), $plugin_data [ 'Name' ], $details_url , $r -> new_version , wp_nonce_url ( 'update.php?action=upgrade-plugin&plugin=' . $file , 'upgrade-plugin_' . $file ) );
2008-08-09 07:36:14 +02:00
2008-06-04 20:09:31 +02:00
echo '</td></tr>' ;
2007-08-22 12:48:48 +02:00
}
2008-06-04 20:09:31 +02:00
add_action ( 'after_plugin_row' , 'wp_plugin_update_row' , 10 , 2 );
2007-08-22 12:48:48 +02:00
2008-02-11 06:45:54 +01:00
function wp_update_plugin ( $plugin , $feedback = '' ) {
global $wp_filesystem ;
if ( ! empty ( $feedback ) )
add_filter ( 'update_feedback' , $feedback );
// Is an update available?
$current = get_option ( 'update_plugins' );
if ( ! isset ( $current -> response [ $plugin ] ) )
return new WP_Error ( 'up_to_date' , __ ( 'The plugin is at the latest version.' ));
// Is a filesystem accessor setup?
2008-05-29 19:29:32 +02:00
if ( ! $wp_filesystem || ! is_object ( $wp_filesystem ) )
2008-02-11 06:45:54 +01:00
WP_Filesystem ();
if ( ! is_object ( $wp_filesystem ) )
return new WP_Error ( 'fs_unavailable' , __ ( 'Could not access filesystem.' ));
2008-03-02 21:17:30 +01:00
if ( $wp_filesystem -> errors -> get_error_code () )
2008-02-11 06:45:54 +01:00
return new WP_Error ( 'fs_error' , __ ( 'Filesystem error' ), $wp_filesystem -> errors );
2008-05-27 19:55:24 +02:00
//Get the base plugin folder
2008-05-29 19:29:32 +02:00
$plugins_dir = $wp_filesystem -> wp_plugins_dir ();
if ( empty ( $plugins_dir ) )
2008-05-29 21:06:27 +02:00
return new WP_Error ( 'fs_no_plugins_dir' , __ ( 'Unable to locate WordPress Plugin directory.' ));
2008-05-29 19:29:32 +02:00
//And the same for the Content directory.
$content_dir = $wp_filesystem -> wp_content_dir ();
if ( empty ( $content_dir ) )
2008-05-29 21:06:27 +02:00
return new WP_Error ( 'fs_no_content_dir' , __ ( 'Unable to locate WordPress Content directory (wp-content).' ));
2008-08-09 07:36:14 +02:00
2008-05-29 19:29:32 +02:00
$plugins_dir = trailingslashit ( $plugins_dir );
$content_dir = trailingslashit ( $content_dir );
2008-03-04 18:10:17 +01:00
2008-02-11 06:45:54 +01:00
// Get the URL to the zip file
$r = $current -> response [ $plugin ];
if ( empty ( $r -> package ) )
return new WP_Error ( 'no_package' , __ ( 'Upgrade package not available.' ));
// Download the package
$package = $r -> package ;
2008-03-11 17:37:44 +01:00
apply_filters ( 'update_feedback' , sprintf ( __ ( 'Downloading update from %s' ), $package ));
2008-05-29 19:29:32 +02:00
$download_file = download_url ( $package );
2008-02-11 06:45:54 +01:00
2008-05-29 19:29:32 +02:00
if ( is_wp_error ( $download_file ) )
2008-06-06 03:45:58 +02:00
return new WP_Error ( 'download_failed' , __ ( 'Download failed.' ), $download_file -> get_error_message ());
2008-02-11 06:45:54 +01:00
2008-05-29 19:29:32 +02:00
$working_dir = $content_dir . 'upgrade/' . basename ( $plugin , '.php' );
2008-02-11 06:45:54 +01:00
// Clean up working directory
2008-03-11 17:37:44 +01:00
if ( $wp_filesystem -> is_dir ( $working_dir ) )
2008-03-01 22:20:23 +01:00
$wp_filesystem -> delete ( $working_dir , true );
2008-02-11 06:45:54 +01:00
2008-03-11 17:37:44 +01:00
apply_filters ( 'update_feedback' , __ ( 'Unpacking the update' ));
2008-02-11 06:45:54 +01:00
// Unzip package to working directory
2008-05-29 19:29:32 +02:00
$result = unzip_file ( $download_file , $working_dir );
2008-08-09 07:36:14 +02:00
2008-05-29 19:29:32 +02:00
// Once extracted, delete the package
unlink ( $download_file );
2008-08-09 07:36:14 +02:00
2008-02-11 06:45:54 +01:00
if ( is_wp_error ( $result ) ) {
$wp_filesystem -> delete ( $working_dir , true );
return $result ;
}
2008-03-22 00:02:00 +01:00
if ( is_plugin_active ( $plugin ) ) {
2008-03-27 08:36:30 +01:00
//Deactivate the plugin silently, Prevent deactivation hooks from running.
2008-03-22 00:02:00 +01:00
apply_filters ( 'update_feedback' , __ ( 'Deactivating the plugin' ));
deactivate_plugins ( $plugin , true );
}
2008-02-11 06:45:54 +01:00
// Remove the existing plugin.
2008-03-11 17:37:44 +01:00
apply_filters ( 'update_feedback' , __ ( 'Removing the old version of the plugin' ));
2008-05-29 19:29:32 +02:00
$this_plugin_dir = trailingslashit ( dirname ( $plugins_dir . $plugin ) );
2008-08-09 07:36:14 +02:00
2008-02-11 06:45:54 +01:00
// If plugin is in its own directory, recursively delete the directory.
2008-05-29 19:29:32 +02:00
if ( strpos ( $plugin , '/' ) && $this_plugin_dir != $plugins_dir ) //base check on if plugin includes directory seperator AND that its not the root plugin folder
$deleted = $wp_filesystem -> delete ( $this_plugin_dir , true );
2008-03-01 22:20:23 +01:00
else
2008-05-29 19:29:32 +02:00
$deleted = $wp_filesystem -> delete ( $plugins_dir . $plugin );
2008-03-11 17:37:44 +01:00
2008-05-29 19:29:32 +02:00
if ( ! $deleted ) {
2008-03-01 22:20:23 +01:00
$wp_filesystem -> delete ( $working_dir , true );
return new WP_Error ( 'delete_failed' , __ ( 'Could not remove the old plugin' ));
}
2008-02-11 06:45:54 +01:00
2008-03-11 17:37:44 +01:00
apply_filters ( 'update_feedback' , __ ( 'Installing the latest version' ));
2008-02-11 06:45:54 +01:00
// Copy new version of plugin into place.
2008-11-13 19:48:54 +01:00
$result = copy_dir ( $working_dir , $plugins_dir );
2008-05-29 19:29:32 +02:00
if ( is_wp_error ( $result ) ) {
2008-09-26 08:43:53 +02:00
$wp_filesystem -> delete ( $working_dir , true );
2008-05-29 19:29:32 +02:00
return $result ;
2008-03-01 22:20:23 +01:00
}
2008-02-11 06:45:54 +01:00
2008-11-13 19:48:54 +01:00
//Get a list of the directories in the working directory before we delete it, We need to know the new folder for the plugin
$filelist = array_keys ( $wp_filesystem -> dirlist ( $working_dir ) );
2008-02-11 06:45:54 +01:00
// Remove working directory
$wp_filesystem -> delete ( $working_dir , true );
// Force refresh of plugin update information
delete_option ( 'update_plugins' );
2008-08-09 07:36:14 +02:00
2008-11-13 19:48:54 +01:00
if ( empty ( $filelist ) )
return false ; //We couldnt find any files in the working dir, therefor no plugin installed? Failsafe backup.
$folder = $filelist [ 0 ];
2008-05-29 19:29:32 +02:00
$plugin = get_plugins ( '/' . $folder ); //Ensure to pass with leading slash
2008-03-27 08:36:30 +01:00
$pluginfiles = array_keys ( $plugin ); //Assume the requested plugin is the first in the list
2008-11-13 19:48:54 +01:00
return $folder . '/' . $pluginfiles [ 0 ];
2008-02-11 06:45:54 +01:00
}
2008-09-26 08:43:53 +02:00
function wp_update_theme ( $theme , $feedback = '' ) {
global $wp_filesystem ;
if ( ! empty ( $feedback ) )
add_filter ( 'update_feedback' , $feedback );
// Is an update available?
$current = get_option ( 'update_themes' );
if ( ! isset ( $current -> response [ $theme ] ) )
return new WP_Error ( 'up_to_date' , __ ( 'The theme is at the latest version.' ));
$r = $current -> response [ $theme ];
$themes = get_themes ();
foreach ( ( array ) $themes as $this_theme ) {
if ( $this_theme [ 'Stylesheet' ] == $theme ) {
$theme_directory = preg_replace ( '!^/themes/!i' , '' , $this_theme [ 'Stylesheet Dir' ]);
break ;
}
}
unset ( $themes );
if ( empty ( $theme_directory ) )
return new WP_Error ( 'theme_non_existant' , __ ( 'Theme does not exist.' ));
// Is a filesystem accessor setup?
if ( ! $wp_filesystem || ! is_object ( $wp_filesystem ) )
WP_Filesystem ();
if ( ! is_object ( $wp_filesystem ) )
return new WP_Error ( 'fs_unavailable' , __ ( 'Could not access filesystem.' ));
if ( $wp_filesystem -> errors -> get_error_code () )
return new WP_Error ( 'fs_error' , __ ( 'Filesystem error' ), $wp_filesystem -> errors );
//Get the base plugin folder
$themes_dir = $wp_filesystem -> wp_themes_dir ();
if ( empty ( $themes_dir ) )
return new WP_Error ( 'fs_no_themes_dir' , __ ( 'Unable to locate WordPress Theme directory.' ));
//And the same for the Content directory.
$content_dir = $wp_filesystem -> wp_content_dir ();
if ( empty ( $content_dir ) )
return new WP_Error ( 'fs_no_content_dir' , __ ( 'Unable to locate WordPress Content directory (wp-content).' ));
$themes_dir = trailingslashit ( $themes_dir );
$content_dir = trailingslashit ( $content_dir );
if ( empty ( $r -> package ) )
return new WP_Error ( 'no_package' , __ ( 'Upgrade package not available.' ));
// Download the package
apply_filters ( 'update_feedback' , sprintf ( __ ( 'Downloading update from %s' ), $r [ 'package' ]));
$download_file = download_url ( $r [ 'package' ]);
if ( is_wp_error ( $download_file ) )
return new WP_Error ( 'download_failed' , __ ( 'Download failed.' ), $download_file -> get_error_message ());
$working_dir = $content_dir . 'upgrade/' . basename ( $theme_directory );
// Clean up working directory
if ( $wp_filesystem -> is_dir ( $working_dir ) )
$wp_filesystem -> delete ( $working_dir , true );
apply_filters ( 'update_feedback' , __ ( 'Unpacking the update' ));
// Unzip package to working directory
$result = unzip_file ( $download_file , $working_dir );
// Once extracted, delete the package
unlink ( $download_file );
if ( is_wp_error ( $result ) ) {
$wp_filesystem -> delete ( $working_dir , true );
return $result ;
}
//TODO: Is theme currently active? If so, set default theme
/*
if ( is_plugin_active ( $plugin ) ) {
//Deactivate the plugin silently, Prevent deactivation hooks from running.
apply_filters ( 'update_feedback' , __ ( 'Deactivating the plugin' ));
deactivate_plugins ( $plugin , true );
} */
// Remove the existing plugin.
apply_filters ( 'update_feedback' , __ ( 'Removing the old version of the theme' ));
$deleted = $wp_filesystem -> delete ( $themes_dir . $theme_directory , true );
if ( ! $deleted ) {
$wp_filesystem -> delete ( $working_dir , true );
return new WP_Error ( 'delete_failed' , __ ( 'Could not remove the old plugin' ));
}
apply_filters ( 'update_feedback' , __ ( 'Installing the latest version' ));
// Copy new version of plugin into place.
$result = copy_dir ( $working_dir , $themes_dir );
if ( is_wp_error ( $result ) ) {
$wp_filesystem -> delete ( $working_dir , true );
return $result ;
}
//Get a list of the directories in the working directory before we delete it, We need to know the new folder for the plugin
//$filelist = array_keys( $wp_filesystem->dirlist($working_dir) );
// Remove working directory
$wp_filesystem -> delete ( $working_dir , true );
// Force refresh of plugin update information
delete_option ( 'update_themes' );
/* if ( empty ( $filelist ) )
return false ; //We couldnt find any files in the working dir, therefor no plugin installed? Failsafe backup.
$folder = $filelist [ 0 ];
$plugin = get_plugins ( '/' . $folder ); //Ensure to pass with leading slash
$pluginfiles = array_keys ( $plugin ); //Assume the requested plugin is the first in the list
return $folder . '/' . $pluginfiles [ 0 ]; */
}
2008-10-31 19:51:06 +01:00
function wp_update_core ( $current , $feedback = '' ) {
2008-08-09 00:49:35 +02:00
global $wp_filesystem ;
2008-10-14 18:36:43 +02:00
@ set_time_limit ( 300 );
2008-08-09 00:49:35 +02:00
if ( ! empty ( $feedback ) )
add_filter ( 'update_feedback' , $feedback );
// Is an update available?
if ( ! isset ( $current -> response ) || $current -> response == 'latest' )
return new WP_Error ( 'up_to_date' , __ ( 'WordPress is at the latest version.' ));
// Is a filesystem accessor setup?
if ( ! $wp_filesystem || ! is_object ( $wp_filesystem ) )
WP_Filesystem ();
if ( ! is_object ( $wp_filesystem ) )
return new WP_Error ( 'fs_unavailable' , __ ( 'Could not access filesystem.' ));
if ( $wp_filesystem -> errors -> get_error_code () )
return new WP_Error ( 'fs_error' , __ ( 'Filesystem error' ), $wp_filesystem -> errors );
// Get the base WP folder
$wp_dir = $wp_filesystem -> abspath ();
if ( empty ( $wp_dir ) )
return new WP_Error ( 'fs_no_wp_dir' , __ ( 'Unable to locate WordPress directory.' ));
// And the same for the Content directory.
$content_dir = $wp_filesystem -> wp_content_dir ();
if ( empty ( $content_dir ) )
return new WP_Error ( 'fs_no_content_dir' , __ ( 'Unable to locate WordPress Content directory (wp-content).' ));
2008-08-09 07:36:14 +02:00
2008-08-09 00:49:35 +02:00
$wp_dir = trailingslashit ( $wp_dir );
$content_dir = trailingslashit ( $content_dir );
// Get the URL to the zip file
$package = $current -> package ;
// Download the package
apply_filters ( 'update_feedback' , sprintf ( __ ( 'Downloading update from %s' ), $package ));
$download_file = download_url ( $package );
if ( is_wp_error ( $download_file ) )
return new WP_Error ( 'download_failed' , __ ( 'Download failed.' ), $download_file -> get_error_message ());
$working_dir = $content_dir . 'upgrade/core' ;
// Clean up working directory
2008-09-09 05:24:05 +02:00
if ( $wp_filesystem -> is_dir ( $working_dir ) ) {
2008-08-09 00:49:35 +02:00
$wp_filesystem -> delete ( $working_dir , true );
2008-09-09 05:24:05 +02:00
}
2008-08-09 00:49:35 +02:00
2008-09-09 05:24:05 +02:00
apply_filters ( 'update_feedback' , __ ( 'Unpacking the core update' ));
2008-08-09 00:49:35 +02:00
// Unzip package to working directory
$result = unzip_file ( $download_file , $working_dir );
// Once extracted, delete the package
unlink ( $download_file );
2008-09-09 05:24:05 +02:00
2008-08-09 00:49:35 +02:00
if ( is_wp_error ( $result ) ) {
$wp_filesystem -> delete ( $working_dir , true );
return $result ;
}
2008-09-09 05:24:05 +02:00
2008-08-09 00:49:35 +02:00
// Copy update-core.php from the new version into place.
if ( ! $wp_filesystem -> copy ( $working_dir . '/wordpress/wp-admin/includes/update-core.php' , $wp_dir . 'wp-admin/includes/update-core.php' , true ) ) {
$wp_filesystem -> delete ( $working_dir , true );
return new WP_Error ( 'copy_failed' , __ ( 'Could not copy files' ));
}
2008-10-22 23:14:49 +02:00
$wp_filesystem -> chmod ( $wp_dir . 'wp-admin/includes/update-core.php' , 0644 );
2008-08-09 00:49:35 +02:00
require ( ABSPATH . 'wp-admin/includes/update-core.php' );
return update_core ( $working_dir , $wp_dir );
}
2008-10-26 00:22:29 +02:00
function maintenance_nag () {
global $upgrading ;
if ( ! isset ( $upgrading ) )
return false ;
if ( current_user_can ( 'manage_options' ) )
2008-11-06 04:31:41 +01:00
$msg = sprintf ( __ ( 'An automated WordPress update has failed to complete - <a href="%s">please attempt the update again now</a>.' ), 'update-core.php' );
2008-10-26 00:22:29 +02:00
else
$msg = __ ( 'An automated WordPress update has failed to complete! Please notify the site administrator.' );
echo " <div id='update-nag'> $msg </div> " ;
}
add_action ( 'admin_notices' , 'maintenance_nag' );
2008-03-21 00:54:17 +01:00
?>