]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/update.php
WordPress 3.8
[autoinstalls/wordpress.git] / wp-admin / update.php
index caed6e794db5e4a73c747c7258775e0990d8b8b4..4290e58d78a90eebedc174cbb8629a976dd69cb2 100644 (file)
@@ -10,7 +10,7 @@ if ( ! defined( 'IFRAME_REQUEST' ) && isset( $_GET['action'] ) && in_array( $_GE
        define( 'IFRAME_REQUEST', true );
 
 /** WordPress Administration Bootstrap */
        define( 'IFRAME_REQUEST', true );
 
 /** WordPress Administration Bootstrap */
-require_once('./admin.php');
+require_once( dirname( __FILE__ ) . '/admin.php' );
 
 include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
 
 
 include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
 
@@ -252,6 +252,15 @@ if ( isset($_GET['action']) ) {
                include(ABSPATH . 'wp-admin/admin-footer.php');
 
        } else {
                include(ABSPATH . 'wp-admin/admin-footer.php');
 
        } else {
-               do_action('update-custom_' . $action);
+               /**
+                * Fires when a custom plugin or theme update request is received.
+                *
+                * The dynamic portion of the hook name, $action, refers to the action
+                * provided in the request for wp-admin/update.php. Can be used to
+                * provide custom update functionality for themes and plugins.
+                *
+                * @since 2.8.0
+                */
+               do_action( "update-custom_{$action}" );
        }
 }
        }
 }