]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/functions.php
WordPress 3.4.1
[autoinstalls/wordpress.git] / wp-includes / functions.php
index 24e1a29c8314ecf750a2efbe8cbc1d11a34b4d2a..d0c5f5262c519a1f86056c5572724548289d57c5 100644 (file)
@@ -1835,99 +1835,19 @@ function get_allowed_mime_types() {
 /**
  * Retrieve nonce action "Are you sure" message.
  *
- * The action is split by verb and noun. The action format is as follows:
- * verb-action_extra. The verb is before the first dash and has the format of
- * letters and no spaces and numbers. The noun is after the dash and before the
- * underscore, if an underscore exists. The noun is also only letters.
- *
- * The filter will be called for any action, which is not defined by WordPress.
- * You may use the filter for your plugin to explain nonce actions to the user,
- * when they get the "Are you sure?" message. The filter is in the format of
- * 'explain_nonce_$verb-$noun' with the $verb replaced by the found verb and the
- * $noun replaced by the found noun. The two parameters that are given to the
- * hook are the localized "Are you sure you want to do this?" message with the
- * extra text (the text after the underscore).
+ * Deprecated in 3.4.1 and 3.5.0. Backported to 3.3.3.
  *
- * @package WordPress
- * @subpackage Security
  * @since 2.0.4
+ * @deprecated 3.4.1
+ * @deprecated Use wp_nonce_ays()
+ * @see wp_nonce_ays()
  *
  * @param string $action Nonce action.
  * @return string Are you sure message.
  */
 function wp_explain_nonce( $action ) {
-       if ( $action !== -1 && preg_match( '/([a-z]+)-([a-z]+)(_(.+))?/', $action, $matches ) ) {
-               $verb = $matches[1];
-               $noun = $matches[2];
-
-               $trans = array();
-               $trans['update']['attachment'] = array( __( 'Your attempt to edit this attachment: “%s” has failed.' ), 'get_the_title' );
-
-               $trans['add']['category']      = array( __( 'Your attempt to add this category has failed.' ), false );
-               $trans['delete']['category']   = array( __( 'Your attempt to delete this category: “%s” has failed.' ), 'get_cat_name' );
-               $trans['update']['category']   = array( __( 'Your attempt to edit this category: “%s” has failed.' ), 'get_cat_name' );
-
-               $trans['delete']['comment']    = array( __( 'Your attempt to delete this comment: “%s” has failed.' ), 'use_id' );
-               $trans['unapprove']['comment'] = array( __( 'Your attempt to unapprove this comment: “%s” has failed.' ), 'use_id' );
-               $trans['approve']['comment']   = array( __( 'Your attempt to approve this comment: “%s” has failed.' ), 'use_id' );
-               $trans['update']['comment']    = array( __( 'Your attempt to edit this comment: “%s” has failed.' ), 'use_id' );
-               $trans['bulk']['comments']     = array( __( 'Your attempt to bulk modify comments has failed.' ), false );
-               $trans['moderate']['comments'] = array( __( 'Your attempt to moderate comments has failed.' ), false );
-
-               $trans['add']['bookmark']      = array( __( 'Your attempt to add this link has failed.' ), false );
-               $trans['delete']['bookmark']   = array( __( 'Your attempt to delete this link: “%s” has failed.' ), 'use_id' );
-               $trans['update']['bookmark']   = array( __( 'Your attempt to edit this link: “%s” has failed.' ), 'use_id' );
-               $trans['bulk']['bookmarks']    = array( __( 'Your attempt to bulk modify links has failed.' ), false );
-
-               $trans['add']['page']          = array( __( 'Your attempt to add this page has failed.' ), false );
-               $trans['delete']['page']       = array( __( 'Your attempt to delete this page: “%s” has failed.' ), 'get_the_title' );
-               $trans['update']['page']       = array( __( 'Your attempt to edit this page: “%s” has failed.' ), 'get_the_title' );
-
-               $trans['edit']['plugin']       = array( __( 'Your attempt to edit this plugin file: “%s” has failed.' ), 'use_id' );
-               $trans['activate']['plugin']   = array( __( 'Your attempt to activate this plugin: “%s” has failed.' ), 'use_id' );
-               $trans['deactivate']['plugin'] = array( __( 'Your attempt to deactivate this plugin: “%s” has failed.' ), 'use_id' );
-               $trans['upgrade']['plugin']    = array( __( 'Your attempt to update this plugin: “%s” has failed.' ), 'use_id' );
-
-               $trans['add']['post']          = array( __( 'Your attempt to add this post has failed.' ), false );
-               $trans['delete']['post']       = array( __( 'Your attempt to delete this post: “%s” has failed.' ), 'get_the_title' );
-               $trans['update']['post']       = array( __( 'Your attempt to edit this post: “%s” has failed.' ), 'get_the_title' );
-
-               $trans['add']['user']          = array( __( 'Your attempt to add this user has failed.' ), false );
-               $trans['delete']['users']      = array( __( 'Your attempt to delete users has failed.' ), false );
-               $trans['bulk']['users']        = array( __( 'Your attempt to bulk modify users has failed.' ), false );
-               $trans['update']['user']       = array( __( 'Your attempt to edit this user: “%s” has failed.' ), 'get_the_author_meta', 'display_name' );
-               $trans['update']['profile']    = array( __( 'Your attempt to modify the profile for: “%s” has failed.' ), 'get_the_author_meta', 'display_name' );
-
-               $trans['update']['options']    = array( __( 'Your attempt to edit your settings has failed.' ), false );
-               $trans['update']['permalink']  = array( __( 'Your attempt to change your permalink structure to: %s has failed.' ), 'use_id' );
-               $trans['edit']['file']         = array( __( 'Your attempt to edit this file: “%s” has failed.' ), 'use_id' );
-               $trans['edit']['theme']        = array( __( 'Your attempt to edit this theme file: “%s” has failed.' ), 'use_id' );
-               $trans['switch']['theme']      = array( __( 'Your attempt to switch to this theme: “%s” has failed.' ), 'use_id' );
-
-               $trans['log']['out']           = array( sprintf( __( 'You are attempting to log out of %s' ), get_bloginfo( 'sitename' ) ), false );
-
-               if ( isset( $trans[$verb][$noun] ) ) {
-                       if ( !empty( $trans[$verb][$noun][1] ) ) {
-                               $lookup = $trans[$verb][$noun][1];
-                               if ( isset($trans[$verb][$noun][2]) )
-                                       $lookup_value = $trans[$verb][$noun][2];
-                               $object = $matches[4];
-                               if ( 'use_id' != $lookup ) {
-                                       if ( isset( $lookup_value ) )
-                                               $object = call_user_func( $lookup, $lookup_value, $object );
-                                       else
-                                               $object = call_user_func( $lookup, $object );
-                               }
-                               return sprintf( $trans[$verb][$noun][0], esc_html($object) );
-                       } else {
-                               return $trans[$verb][$noun][0];
-                       }
-               }
-
-               return apply_filters( 'explain_nonce_' . $verb . '-' . $noun, __( 'Are you sure you want to do this?' ), isset($matches[4]) ? $matches[4] : '' );
-       } else {
-               return apply_filters( 'explain_nonce_' . $action, __( 'Are you sure you want to do this?' ) );
-       }
+       _deprecated_function( __FUNCTION__, '3.4.1', 'wp_nonce_ays()' );
+       return __( 'Are you sure you want to do this?' );
 }
 
 /**
@@ -1944,11 +1864,14 @@ function wp_explain_nonce( $action ) {
  */
 function wp_nonce_ays( $action ) {
        $title = __( 'WordPress Failure Notice' );
-       $html = esc_html( wp_explain_nonce( $action ) );
-       if ( 'log-out' == $action )
-               $html .= "</p><p>" . sprintf( __( "Do you really want to <a href='%s'>log out</a>?"), wp_logout_url() );
-       elseif ( wp_get_referer() )
-               $html .= "</p><p><a href='" . esc_url( remove_query_arg( 'updated', wp_get_referer() ) ) . "'>" . __( 'Please try again.' ) . "</a>";
+       if ( 'log-out' == $action ) {
+               $html = sprintf( __( 'You are attempting to log out of %s' ), get_bloginfo( 'name' ) ) . '</p><p>';
+               $html .= sprintf( __( "Do you really want to <a href='%s'>log out</a>?"), wp_logout_url() );
+       } else {
+               $html = __( 'Are you sure you want to do this?' );
+               if ( wp_get_referer() )
+                       $html .= "</p><p><a href='" . esc_url( remove_query_arg( 'updated', wp_get_referer() ) ) . "'>" . __( 'Please try again.' ) . "</a>";
+       }
 
        wp_die( $html, $title, array('response' => 403) );
 }
@@ -3622,7 +3545,11 @@ function wp_allowed_protocols() {
  * @return string|array Either a string containing a reversed comma separated trace or an array of individual calls.
  */
 function wp_debug_backtrace_summary( $ignore_class = null, $skip_frames = 0, $pretty = true ) {
-       $trace  = debug_backtrace( false );
+       if ( version_compare( PHP_VERSION, '5.2.5', '>=' ) )
+               $trace = debug_backtrace( false );
+       else
+               $trace = debug_backtrace();
+
        $caller = array();
        $check_class = ! is_null( $ignore_class );
        $skip_frames++; // skip this function
@@ -3690,7 +3617,7 @@ function _device_can_upload() {
        if ( strpos($ua, 'iPhone') !== false
                || strpos($ua, 'iPad') !== false
                || strpos($ua, 'iPod') !== false ) {
-                       return false;
+                       return preg_match( '#OS ([\d_]+) like Mac OS X#', $ua, $version ) && version_compare( $version[1], '6', '>=' );
        } else {
                return true;
        }