]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/functions.php
WordPress 3.9-scripts
[autoinstalls/wordpress.git] / wp-includes / functions.php
index f8b424a8b57e4f39fff8a836a04c670b46a91d29..88e59fb1ac884486a0eebe68ebef2821ecf81eee 100644 (file)
@@ -46,13 +46,14 @@ function mysql2date( $format, $date, $translate = true ) {
  *
  * The 'mysql' type will return the time in the format for MySQL DATETIME field.
  * The 'timestamp' type will return the current timestamp.
+ * Other strings will be interpreted as PHP date formats (e.g. 'Y-m-d').
  *
  * If $gmt is set to either '1' or 'true', then both types will use GMT time.
  * if $gmt is false, the output is adjusted with the GMT offset in the WordPress option.
  *
  * @since 1.0.0
  *
- * @param string $type Either 'mysql' or 'timestamp'.
+ * @param string $type 'mysql', 'timestamp', or PHP date format string (e.g. 'Y-m-d').
  * @param int|bool $gmt Optional. Whether to use GMT timezone. Default is false.
  * @return int|string String if $type is 'gmt', int if $type is 'timestamp'.
  */
@@ -64,6 +65,9 @@ function current_time( $type, $gmt = 0 ) {
                case 'timestamp':
                        return ( $gmt ) ? time() : time() + ( get_option( 'gmt_offset' ) * HOUR_IN_SECONDS );
                        break;
+               default:
+                       return ( $gmt ) ? date( $type ) : date( $type, time() + ( get_option( 'gmt_offset' ) * HOUR_IN_SECONDS ) );
+                       break;
        }
 }
 
@@ -136,8 +140,18 @@ function date_i18n( $dateformatstring, $unixtimestamp = false, $gmt = false ) {
                }
        }
        $j = @$datefunc( $dateformatstring, $i );
-       // allow plugins to redo this entirely for languages with untypical grammars
-       $j = apply_filters('date_i18n', $j, $req_format, $i, $gmt);
+
+       /**
+        * Filter the date formatted based on the locale.
+        *
+        * @since 2.8.0
+        * 
+        * @param string $j          Formatted date string.
+        * @param string $req_format Format to display the date.
+        * @param int    $i          Unix timestamp.
+        * @param bool   $gmt        Whether to convert to GMT for time. Default false.
+        */
+       $j = apply_filters( 'date_i18n', $j, $req_format, $i, $gmt );
        return $j;
 }
 
@@ -153,6 +167,14 @@ function date_i18n( $dateformatstring, $unixtimestamp = false, $gmt = false ) {
 function number_format_i18n( $number, $decimals = 0 ) {
        global $wp_locale;
        $formatted = number_format( $number, absint( $decimals ), $wp_locale->number_format['decimal_point'], $wp_locale->number_format['thousands_sep'] );
+
+       /**
+        * Filter the number formatted based on the locale.
+        *
+        * @since  2.8.0
+        *
+        * @param string $formatted Converted number in string format.
+        */
        return apply_filters( 'number_format_i18n', $formatted );
 }
 
@@ -242,35 +264,60 @@ function maybe_unserialize( $original ) {
  * @since 2.0.5
  *
  * @param mixed $data Value to check to see if was serialized.
+ * @param bool $strict Optional. Whether to be strict about the end of the string. Defaults true.
  * @return bool False if not serialized and true if it was.
  */
-function is_serialized( $data ) {
+function is_serialized( $data, $strict = true ) {
        // if it isn't a string, it isn't serialized
-       if ( ! is_string( $data ) )
+       if ( ! is_string( $data ) ) {
                return false;
+       }
        $data = trim( $data );
-       if ( 'N;' == $data )
+       if ( 'N;' == $data ) {
                return true;
-       $length = strlen( $data );
-       if ( $length < 4 )
-               return false;
-       if ( ':' !== $data[1] )
+       }
+       if ( strlen( $data ) < 4 ) {
                return false;
-       $lastc = $data[$length-1];
-       if ( ';' !== $lastc && '}' !== $lastc )
+       }
+       if ( ':' !== $data[1] ) {
                return false;
+       }
+       if ( $strict ) {
+               $lastc = substr( $data, -1 );
+               if ( ';' !== $lastc && '}' !== $lastc ) {
+                       return false;
+               }
+       } else {
+               $semicolon = strpos( $data, ';' );
+               $brace     = strpos( $data, '}' );
+               // Either ; or } must exist.
+               if ( false === $semicolon && false === $brace )
+                       return false;
+               // But neither must be in the first X characters.
+               if ( false !== $semicolon && $semicolon < 3 )
+                       return false;
+               if ( false !== $brace && $brace < 4 )
+                       return false;
+       }
        $token = $data[0];
        switch ( $token ) {
                case 's' :
-                       if ( '"' !== $data[$length-2] )
+                       if ( $strict ) {
+                               if ( '"' !== substr( $data, -2, 1 ) ) {
+                                       return false;
+                               }
+                       } elseif ( false === strpos( $data, '"' ) ) {
                                return false;
+                       }
+                       // or else fall through
                case 'a' :
                case 'O' :
                        return (bool) preg_match( "/^{$token}:[0-9]+:/s", $data );
                case 'b' :
                case 'i' :
                case 'd' :
-                       return (bool) preg_match( "/^{$token}:[0-9.E-]+;\$/", $data );
+                       $end = $strict ? '$' : '';
+                       return (bool) preg_match( "/^{$token}:[0-9.E-]+;$end/", $data );
        }
        return false;
 }
@@ -285,22 +332,23 @@ function is_serialized( $data ) {
  */
 function is_serialized_string( $data ) {
        // if it isn't a string, it isn't a serialized string
-       if ( !is_string( $data ) )
+       if ( ! is_string( $data ) ) {
                return false;
+       }
        $data = trim( $data );
-       $length = strlen( $data );
-       if ( $length < 4 )
+       if ( strlen( $data ) < 4 ) {
                return false;
-       elseif ( ':' !== $data[1] )
+       } elseif ( ':' !== $data[1] ) {
                return false;
-       elseif ( ';' !== $data[$length-1] )
+       } elseif ( ';' !== substr( $data, -1 ) ) {
                return false;
-       elseif ( $data[0] !== 's' )
+       } elseif ( $data[0] !== 's' ) {
                return false;
-       elseif ( '"' !== $data[$length-2] )
+       } elseif ( '"' !== substr( $data, -2, 1 ) ) {
                return false;
-       else
+       } else {
                return true;
+       }
 }
 
 /**
@@ -317,7 +365,7 @@ function maybe_serialize( $data ) {
 
        // Double serialization is required for backward compatibility.
        // See http://core.trac.wordpress.org/ticket/12930
-       if ( is_serialized( $data ) )
+       if ( is_serialized( $data, false ) )
                return serialize( $data );
 
        return $data;
@@ -329,8 +377,6 @@ function maybe_serialize( $data ) {
  * If the title element is not part of the XML, then the default post title from
  * the $post_default_title will be used instead.
  *
- * @package WordPress
- * @subpackage XMLRPC
  * @since 0.71
  *
  * @global string $post_default_title Default XMLRPC post title.
@@ -355,8 +401,6 @@ function xmlrpc_getposttitle( $content ) {
  * used. The return type then would be what $post_default_category. If the
  * category is found, then it will always be an array.
  *
- * @package WordPress
- * @subpackage XMLRPC
  * @since 0.71
  *
  * @global string $post_default_category Default XMLRPC post category.
@@ -378,8 +422,6 @@ function xmlrpc_getpostcategory( $content ) {
 /**
  * XMLRPC XML content without title and category elements.
  *
- * @package WordPress
- * @subpackage XMLRPC
  * @since 0.71
  *
  * @param string $content XMLRPC XML Request content
@@ -392,6 +434,26 @@ function xmlrpc_removepostdata( $content ) {
        return $content;
 }
 
+/**
+ * Use RegEx to extract URLs from arbitrary content
+ *
+ * @since 3.7.0
+ *
+ * @param string $content
+ * @return array URLs found in passed string
+ */
+function wp_extract_urls( $content ) {
+       preg_match_all(
+               "#((?:[\w-]+://?|[\w\d]+[.])[^\s()<>]+[.](?:\([\w\d]+\)|(?:[^`!()\[\]{};:'\".,<>?«»“”‘’\s]|(?:[:]\d+)?/?)+))#",
+               $content,
+               $post_links
+       );
+
+       $post_links = array_unique( array_map( 'html_entity_decode', $post_links[0] ) );
+
+       return array_values( $post_links );
+}
+
 /**
  * Check content for video and audio links to add as enclosures.
  *
@@ -399,7 +461,6 @@ function xmlrpc_removepostdata( $content ) {
  * remove enclosures that are no longer in the post. This is called as
  * pingbacks and trackbacks.
  *
- * @package WordPress
  * @since 1.5.0
  *
  * @uses $wpdb
@@ -417,22 +478,17 @@ function do_enclose( $content, $post_ID ) {
 
        $pung = get_enclosed( $post_ID );
 
-       $ltrs = '\w';
-       $gunk = '/#~:.?+=&%@!\-';
-       $punc = '.:?\-';
-       $any = $ltrs . $gunk . $punc;
-
-       preg_match_all( "{\b http : [$any] +? (?= [$punc] * [^$any] | $)}x", $content, $post_links_temp );
+       $post_links_temp = wp_extract_urls( $content );
 
        foreach ( $pung as $link_test ) {
-               if ( !in_array( $link_test, $post_links_temp[0] ) ) { // link no longer in post
+               if ( ! in_array( $link_test, $post_links_temp ) ) { // link no longer in post
                        $mids = $wpdb->get_col( $wpdb->prepare("SELECT meta_id FROM $wpdb->postmeta WHERE post_id = %d AND meta_key = 'enclosure' AND meta_value LIKE (%s)", $post_ID, like_escape( $link_test ) . '%') );
                        foreach ( $mids as $mid )
                                delete_metadata_by_mid( 'post', $mid );
                }
        }
 
-       foreach ( (array) $post_links_temp[0] as $link_test ) {
+       foreach ( (array) $post_links_temp as $link_test ) {
                if ( !in_array( $link_test, $pung ) ) { // If we haven't pung it already
                        $test = @parse_url( $link_test );
                        if ( false === $test )
@@ -666,14 +722,8 @@ function add_query_arg() {
        }
 
        if ( strpos( $uri, '?' ) !== false ) {
-               $parts = explode( '?', $uri, 2 );
-               if ( 1 == count( $parts ) ) {
-                       $base = '?';
-                       $query = $parts[0];
-               } else {
-                       $base = $parts[0] . '?';
-                       $query = $parts[1];
-               }
+               list( $base, $query ) = explode( '?', $uri, 2 );
+               $base .= '?';
        } elseif ( $protocol || strpos( $uri, '=' ) === false ) {
                $base = $uri . '?';
                $query = '';
@@ -838,10 +888,14 @@ function get_status_header_desc( $code ) {
                        415 => 'Unsupported Media Type',
                        416 => 'Requested Range Not Satisfiable',
                        417 => 'Expectation Failed',
+                       418 => 'I\'m a teapot',
                        422 => 'Unprocessable Entity',
                        423 => 'Locked',
                        424 => 'Failed Dependency',
                        426 => 'Upgrade Required',
+                       428 => 'Precondition Required',
+                       429 => 'Too Many Requests',
+                       431 => 'Request Header Fields Too Large',
 
                        500 => 'Internal Server Error',
                        501 => 'Not Implemented',
@@ -851,7 +905,8 @@ function get_status_header_desc( $code ) {
                        505 => 'HTTP Version Not Supported',
                        506 => 'Variant Also Negotiates',
                        507 => 'Insufficient Storage',
-                       510 => 'Not Extended'
+                       510 => 'Not Extended',
+                       511 => 'Network Authentication Required',
                );
        }
 
@@ -865,27 +920,35 @@ function get_status_header_desc( $code ) {
  * Set HTTP status header.
  *
  * @since 2.0.0
- * @uses apply_filters() Calls 'status_header' on status header string, HTTP
- *             HTTP code, HTTP code description, and protocol string as separate
- *             parameters.
+ * @see get_status_header_desc()
  *
- * @param int $header HTTP status code
- * @return unknown
+ * @param int $code HTTP status code.
  */
-function status_header( $header ) {
-       $text = get_status_header_desc( $header );
+function status_header( $code ) {
+       $description = get_status_header_desc( $code );
 
-       if ( empty( $text ) )
-               return false;
+       if ( empty( $description ) )
+               return;
 
-       $protocol = $_SERVER["SERVER_PROTOCOL"];
+       $protocol = $_SERVER['SERVER_PROTOCOL'];
        if ( 'HTTP/1.1' != $protocol && 'HTTP/1.0' != $protocol )
                $protocol = 'HTTP/1.0';
-       $status_header = "$protocol $header $text";
+       $status_header = "$protocol $code $description";
        if ( function_exists( 'apply_filters' ) )
-               $status_header = apply_filters( 'status_header', $status_header, $header, $text, $protocol );
 
-       return @header( $status_header, true, $header );
+               /**
+                * Filter an HTTP status header.
+                *
+                * @since 2.2.0
+                *
+                * @param string $status_header HTTP status header.
+                * @param int    $code          HTTP status code.
+                * @param string $description   Description for the status code.
+                * @param string $protocol      Server protocol.
+                */
+               $status_header = apply_filters( 'status_header', $status_header, $code, $description, $protocol );
+
+       @header( $status_header, true, $code );
 }
 
 /**
@@ -896,7 +959,6 @@ function status_header( $header ) {
  *
  * @since 2.8.0
  *
- * @uses apply_filters()
  * @return array The associative array of header names and field values.
  */
 function wp_get_nocache_headers() {
@@ -907,7 +969,20 @@ function wp_get_nocache_headers() {
        );
 
        if ( function_exists('apply_filters') ) {
-               $headers = (array) apply_filters('nocache_headers', $headers);
+               /**
+                * Filter the cache-controlling headers.
+                *
+                * @since 2.8.0
+                *
+                * @param array $headers {
+                *     Header names and field values.
+                *
+                *     @type string $Expires       Expires header.
+                *     @type string $Cache-Control Cache-Control header.
+                *     @type string $Pragma        Pragma header.
+                * }
+                */
+               $headers = (array) apply_filters( 'nocache_headers', $headers );
        }
        $headers['Last-Modified'] = false;
        return $headers;
@@ -920,7 +995,7 @@ function wp_get_nocache_headers() {
  * be sent so that all of them get the point that no caching should occur.
  *
  * @since 2.0.0
- * @uses wp_get_nocache_headers()
+ * @see wp_get_nocache_headers()
  */
 function nocache_headers() {
        $headers = wp_get_nocache_headers();
@@ -990,8 +1065,8 @@ function bool_from_yn( $yn ) {
  * It is better to only have one hook for each feed.
  *
  * @since 2.1.0
+ *
  * @uses $wp_query Used to tell if the use a comment feed.
- * @uses do_action() Calls 'do_feed_$feed' hook, if a hook exists for the feed.
  */
 function do_feed() {
        global $wp_query;
@@ -1005,11 +1080,18 @@ function do_feed() {
                $feed = get_default_feed();
 
        $hook = 'do_feed_' . $feed;
-       if ( !has_action($hook) ) {
-               $message = sprintf( __( 'ERROR: %s is not a valid feed template.' ), esc_html($feed));
-               wp_die( $message, '', array( 'response' => 404 ) );
-       }
-
+       if ( ! has_action( $hook ) )
+               wp_die( __( 'ERROR: This is not a valid feed template.' ), '', array( 'response' => 404 ) );
+
+       /**
+        * Fires once the given feed is loaded.
+        *
+        * The dynamic hook name, $hook, refers to the feed name.
+        *
+        * @since 2.1.0
+        *
+        * @param bool $is_comment_feed Whether the feed is a comment feed.
+        */
        do_action( $hook, $wp_query->is_comment_feed );
 }
 
@@ -1066,11 +1148,15 @@ function do_feed_atom( $for_comments ) {
  * robots.txt file.
  *
  * @since 2.1.0
- * @uses do_action() Calls 'do_robotstxt' hook for displaying robots.txt rules.
  */
 function do_robots() {
        header( 'Content-Type: text/plain; charset=utf-8' );
 
+       /**
+        * Fires when displaying the robots.txt file.
+        *
+        * @since 2.1.0
+        */
        do_action( 'do_robotstxt' );
 
        $output = "User-agent: *\n";
@@ -1084,7 +1170,15 @@ function do_robots() {
                $output .= "Disallow: $path/wp-includes/\n";
        }
 
-       echo apply_filters('robots_txt', $output, $public);
+       /**
+        * Filter the robots.txt output.
+        *
+        * @since 3.0.0
+        *
+        * @param string $output Robots.txt output.
+        * @param bool   $public Whether the site is considered "public".
+        */
+       echo apply_filters( 'robots_txt', $output, $public );
 }
 
 /**
@@ -1164,14 +1258,12 @@ function is_blog_installed() {
 /**
  * Retrieve URL with nonce added to URL query.
  *
- * @package WordPress
- * @subpackage Security
  * @since 2.0.4
  *
  * @param string $actionurl URL to add nonce action.
  * @param string $action Optional. Nonce action name.
  * @param string $name Optional. Nonce name.
- * @return string URL with nonce action added.
+ * @return string Escaped URL with nonce action added.
  */
 function wp_nonce_url( $actionurl, $action = -1, $name = '_wpnonce' ) {
        $actionurl = str_replace( '&amp;', '&', $actionurl );
@@ -1196,8 +1288,6 @@ function wp_nonce_url( $actionurl, $action = -1, $name = '_wpnonce' ) {
  * The input name will be whatever $name value you gave. The input value will be
  * the nonce creation value.
  *
- * @package WordPress
- * @subpackage Security
  * @since 2.0.4
  *
  * @param string $action Optional. Action name.
@@ -1225,8 +1315,6 @@ function wp_nonce_field( $action = -1, $name = "_wpnonce", $referer = true , $ec
  * The referer link is the current Request URI from the server super global. The
  * input name is '_wp_http_referer', in case you wanted to check manually.
  *
- * @package WordPress
- * @subpackage Security
  * @since 2.0.4
  *
  * @param bool $echo Whether to echo or return the referer field.
@@ -1247,8 +1335,6 @@ function wp_referer_field( $echo = true ) {
  * value of {@link wp_referer_field()}, if that was posted already or it will
  * be the current page, if it doesn't exist.
  *
- * @package WordPress
- * @subpackage Security
  * @since 2.0.4
  *
  * @param bool $echo Whether to echo the original http referer
@@ -1269,13 +1355,13 @@ function wp_original_referer_field( $echo = true, $jump_back_to = 'current' ) {
  * Retrieve referer from '_wp_http_referer' or HTTP referer. If it's the same
  * as the current request URL, will return false.
  *
- * @package WordPress
- * @subpackage Security
  * @since 2.0.4
  *
  * @return string|bool False on failure. Referer URL on success.
  */
 function wp_get_referer() {
+       if ( ! function_exists( 'wp_validate_redirect' ) )
+               return false;
        $ref = false;
        if ( ! empty( $_REQUEST['_wp_http_referer'] ) )
                $ref = wp_unslash( $_REQUEST['_wp_http_referer'] );
@@ -1283,22 +1369,20 @@ function wp_get_referer() {
                $ref = wp_unslash( $_SERVER['HTTP_REFERER'] );
 
        if ( $ref && $ref !== wp_unslash( $_SERVER['REQUEST_URI'] ) )
-               return wp_unslash( $ref );
+               return wp_validate_redirect( $ref, false );
        return false;
 }
 
 /**
  * Retrieve original referer that was posted, if it exists.
  *
- * @package WordPress
- * @subpackage Security
  * @since 2.0.4
  *
  * @return string|bool False if no original referer or original referer if set.
  */
 function wp_get_original_referer() {
-       if ( !empty( $_REQUEST['_wp_original_http_referer'] ) )
-               return wp_unslash( $_REQUEST['_wp_original_http_referer'] );
+       if ( ! empty( $_REQUEST['_wp_original_http_referer'] ) && function_exists( 'wp_validate_redirect' ) )
+               return wp_validate_redirect( wp_unslash( $_REQUEST['_wp_original_http_referer'] ), false );
        return false;
 }
 
@@ -1336,19 +1420,32 @@ function wp_mkdir_p( $target ) {
        if ( file_exists( $target ) )
                return @is_dir( $target );
 
-       // Attempting to create the directory may clutter up our display.
-       if ( @mkdir( $target ) ) {
-               $stat = @stat( dirname( $target ) );
-               $dir_perms = $stat['mode'] & 0007777;  // Get the permission bits.
-               @chmod( $target, $dir_perms );
-               return true;
-       } elseif ( is_dir( dirname( $target ) ) ) {
-                       return false;
+       // We need to find the permissions of the parent folder that exists and inherit that.
+       $target_parent = dirname( $target );
+       while ( '.' != $target_parent && ! is_dir( $target_parent ) ) {
+               $target_parent = dirname( $target_parent );
        }
 
-       // If the above failed, attempt to create the parent node, then try again.
-       if ( ( $target != '/' ) && ( wp_mkdir_p( dirname( $target ) ) ) )
-               return wp_mkdir_p( $target );
+       // Get the permission bits.
+       $dir_perms = false;
+       if ( $stat = @stat( $target_parent ) ) {
+               $dir_perms = $stat['mode'] & 0007777;
+       } else {
+               $dir_perms = 0777;
+       }
+
+       if ( @mkdir( $target, $dir_perms, true ) ) {
+
+               // If a umask is set that modifies $dir_perms, we'll have to re-set the $dir_perms correctly with chmod()
+               if ( $dir_perms != ( $dir_perms & ~umask() ) ) {
+                       $folder_parts = explode( '/', substr( $target, strlen( $target_parent ) + 1 ) );
+                       for ( $i = 1; $i <= count( $folder_parts ); $i++ ) {
+                               @chmod( $target_parent . '/' . implode( '/', array_slice( $folder_parts, 0, $i ) ), $dir_perms );
+                       }
+               }
+
+               return true;
+       }
 
        return false;
 }
@@ -1395,6 +1492,23 @@ function path_join( $base, $path ) {
        return rtrim($base, '/') . '/' . ltrim($path, '/');
 }
 
+/**
+ * Normalize a filesystem path.
+ *
+ * Replaces backslashes with forward slashes for Windows systems,
+ * and ensures no duplicate slashes exist.
+ *
+ * @since 3.9.0
+ *
+ * @param string $path Path to normalize.
+ * @return string Normalized path.
+ */
+function wp_normalize_path( $path ) {
+       $path = str_replace( '\\', '/', $path );
+       $path = preg_replace( '|/+|','/', $path );
+       return $path;
+}
+
 /**
  * Determines a writable directory for temporary files.
  * Function's preference is the return value of <code>sys_get_temp_dir()</code>,
@@ -1415,17 +1529,17 @@ function get_temp_dir() {
                return trailingslashit(WP_TEMP_DIR);
 
        if ( $temp )
-               return trailingslashit( rtrim( $temp, '\\' ) );
+               return trailingslashit( $temp );
 
        if ( function_exists('sys_get_temp_dir') ) {
                $temp = sys_get_temp_dir();
                if ( @is_dir( $temp ) && wp_is_writable( $temp ) )
-                       return trailingslashit( rtrim( $temp, '\\' ) );
+                       return trailingslashit( $temp );
        }
 
        $temp = ini_get('upload_tmp_dir');
-       if ( is_dir( $temp ) && wp_is_writable( $temp ) )
-               return trailingslashit( rtrim( $temp, '\\' ) );
+       if ( @is_dir( $temp ) && wp_is_writable( $temp ) )
+               return trailingslashit( $temp );
 
        $temp = WP_CONTENT_DIR . '/';
        if ( is_dir( $temp ) && wp_is_writable( $temp ) )
@@ -1517,7 +1631,6 @@ function win_is_writable( $path ) {
  * 'error' - set to false.
  *
  * @since 2.0.0
- * @uses apply_filters() Calls 'upload_dir' on returned array.
  *
  * @param string $time Optional. Time formatted in 'yyyy/mm'.
  * @return array See above for description.
@@ -1550,7 +1663,7 @@ function wp_upload_dir( $time = null ) {
        }
 
        // If multisite (and if not the main site in a post-MU network)
-       if ( is_multisite() && ! ( is_main_site() && defined( 'MULTISITE' ) ) ) {
+       if ( is_multisite() && ! ( is_main_network() && is_main_site() && defined( 'MULTISITE' ) ) ) {
 
                if ( ! get_site_option( 'ms_files_rewriting' ) ) {
                        // If ms-files rewriting is disabled (networks created post-3.5), it is fairly straightforward:
@@ -1604,6 +1717,14 @@ function wp_upload_dir( $time = null ) {
        $dir .= $subdir;
        $url .= $subdir;
 
+       /**
+        * Filter the uploads directory data.
+        *
+        * @since 2.0.0
+        *
+        * @param array $uploads Array of upload directory data with keys of 'path',
+        *                       'url', 'subdir, 'basedir', and 'error'.
+        */
        $uploads = apply_filters( 'upload_dir',
                array(
                        'path'    => $dir,
@@ -1729,6 +1850,16 @@ function wp_upload_bits( $name, $deprecated, $bits, $time = null ) {
        if ( $upload['error'] !== false )
                return $upload;
 
+       /**
+        * Filter whether to treat the upload bits as an error.
+        *
+        * Passing a non-array to the filter will effectively short-circuit preparing
+        * the upload bits, returning that value instead.
+        *
+        * @since 3.0.0
+        *
+        * @param mixed $upload_bits_error An array of upload bits data, or a non-array error to return.
+        */
        $upload_bits_error = apply_filters( 'wp_upload_bits', array( 'name' => $name, 'bits' => $bits, 'time' => $time ) );
        if ( !is_array( $upload_bits_error ) ) {
                $upload[ 'error' ] = $upload_bits_error;
@@ -1772,15 +1903,27 @@ function wp_upload_bits( $name, $deprecated, $bits, $time = null ) {
 /**
  * Retrieve the file type based on the extension name.
  *
- * @package WordPress
  * @since 2.5.0
- * @uses apply_filters() Calls 'ext2type' hook on default supported types.
  *
  * @param string $ext The extension to search.
- * @return string|null The file type, example: audio, video, document, spreadsheet, etc. Null if not found.
+ * @return string|null The file type, example: audio, video, document, spreadsheet, etc.
+ *                     Null if not found.
  */
 function wp_ext2type( $ext ) {
+       $ext = strtolower( $ext );
+
+       /**
+        * Filter file type based on the extension name.
+        *
+        * @since 2.5.0
+        *
+        * @see wp_ext2type()
+        *
+        * @param array $ext2type Multi-dimensional array with extensions for a default set
+        *                        of file types.
+        */
        $ext2type = apply_filters( 'ext2type', array(
+               'image'       => array( 'jpg', 'jpeg', 'jpe',  'gif',  'png',  'bmp',   'tif',  'tiff', 'ico' ),
                'audio'       => array( 'aac', 'ac3',  'aif',  'aiff', 'm3a',  'm4a',   'm4b',  'mka',  'mp1',  'mp2',  'mp3', 'ogg', 'oga', 'ram', 'wav', 'wma' ),
                'video'       => array( 'asf', 'avi',  'divx', 'dv',   'flv',  'm4v',   'mkv',  'mov',  'mp4',  'mpeg', 'mpg', 'mpv', 'ogm', 'ogv', 'qt',  'rm', 'vob', 'wmv' ),
                'document'    => array( 'doc', 'docx', 'docm', 'dotm', 'odt',  'pages', 'pdf',  'rtf',  'wp',   'wpd' ),
@@ -1789,10 +1932,13 @@ function wp_ext2type( $ext ) {
                'text'        => array( 'asc', 'csv',  'tsv',  'txt' ),
                'archive'     => array( 'bz2', 'cab',  'dmg',  'gz',   'rar',  'sea',   'sit',  'sqx',  'tar',  'tgz',  'zip', '7z' ),
                'code'        => array( 'css', 'htm',  'html', 'php',  'js' ),
-       ));
+       ) );
+
        foreach ( $ext2type as $type => $exts )
                if ( in_array( $ext, $exts ) )
                        return $type;
+
+       return null;
 }
 
 /**
@@ -1835,8 +1981,8 @@ function wp_check_filetype( $filename, $mimes = null ) {
  *
  * @since 3.0.0
  *
- * @param string $file Full path to the image.
- * @param string $filename The filename of the image (may differ from $file due to $file being in a tmp directory)
+ * @param string $file Full path to the file.
+ * @param string $filename The name of the file (may differ from $file due to $file being in a tmp directory)
  * @param array $mimes Optional. Key is the file extension with value as the mime type.
  * @return array Values for the extension, MIME, and either a corrected filename or false if original $filename is valid
  */
@@ -1860,8 +2006,13 @@ function wp_check_filetype_and_ext( $file, $filename, $mimes = null ) {
 
                // If getimagesize() knows what kind of image it really is and if the real MIME doesn't match the claimed MIME
                if ( !empty($imgstats['mime']) && $imgstats['mime'] != $type ) {
-                       // This is a simplified array of MIMEs that getimagesize() can detect and their extensions
-                       // You shouldn't need to use this filter, but it's here just in case
+                       /**
+                        * Filter the list mapping image mime types to their respective extensions.
+                        *
+                        * @since 3.0.0
+                        *
+                        * @param  array $mime_to_ext Array of image mime types and their matching extensions.
+                        */
                        $mime_to_ext = apply_filters( 'getimagesize_mimes_to_exts', array(
                                'image/jpeg' => 'jpg',
                                'image/png'  => 'png',
@@ -1887,8 +2038,18 @@ function wp_check_filetype_and_ext( $file, $filename, $mimes = null ) {
                }
        }
 
-       // Let plugins try and validate other types of files
-       // Should return an array in the style of array( 'ext' => $ext, 'type' => $type, 'proper_filename' => $proper_filename )
+       /**
+        * Filter the "real" file type of the given file.
+        *
+        * @since 3.0.0
+        *
+        * @param array  $wp_check_filetype_and_ext File data array containing 'ext', 'type', and
+        *                                          'proper_filename' keys.
+        * @param string $file                      Full path to the file.
+        * @param string $filename                  The name of the file (may differ from $file due to
+        *                                          $file being in a tmp directory).
+        * @param array  $mimes                     Key is the file extension with value as the mime type.
+        */
        return apply_filters( 'wp_check_filetype_and_ext', compact( 'ext', 'type', 'proper_filename' ), $file, $filename, $mimes );
 }
 
@@ -1897,13 +2058,20 @@ function wp_check_filetype_and_ext( $file, $filename, $mimes = null ) {
  *
  * @since 3.5.0
  *
- * @uses apply_filters() Calls 'mime_types' on returned array. This filter should
- * be used to add types, not remove them. To remove types use the upload_mimes filter.
- *
  * @return array Array of mime types keyed by the file extension regex corresponding to those types.
  */
 function wp_get_mime_types() {
-       // Accepted MIME types are set here as PCRE unless provided.
+       /**
+        * Filter the list of mime types and file extensions.
+        *
+        * This filter should be used to add, not remove, mime types. To remove
+        * mime types, use the 'upload_mimes' filter.
+        *
+        * @since 3.5.0
+        *
+        * @param array $wp_get_mime_types Mime types keyed by the file extension regex
+        *                                 corresponding to those types.
+        */
        return apply_filters( 'mime_types', array(
        // Image formats
        'jpg|jpeg|jpe' => 'image/jpeg',
@@ -1934,6 +2102,7 @@ function wp_get_mime_types() {
        'rtx' => 'text/richtext',
        'css' => 'text/css',
        'htm|html' => 'text/html',
+       'vtt' => 'text/vtt',
        // Audio formats
        'mp3|m4a|m4b' => 'audio/mpeg',
        'ra|ram' => 'audio/x-realaudio',
@@ -2003,13 +2172,32 @@ function wp_get_mime_types() {
  *
  * @since 2.8.6
  *
- * @uses apply_filters() Calls 'upload_mimes' on returned array
  * @uses wp_get_upload_mime_types() to fetch the list of mime types
  *
+ * @param int|WP_User $user Optional. User to check. Defaults to current user.
  * @return array Array of mime types keyed by the file extension regex corresponding to those types.
  */
-function get_allowed_mime_types() {
-       return apply_filters( 'upload_mimes', wp_get_mime_types() );
+function get_allowed_mime_types( $user = null ) {
+       $t = wp_get_mime_types();
+
+       unset( $t['swf'], $t['exe'] );
+       if ( function_exists( 'current_user_can' ) )
+               $unfiltered = $user ? user_can( $user, 'unfiltered_html' ) : current_user_can( 'unfiltered_html' );
+
+       if ( empty( $unfiltered ) )
+               unset( $t['htm|html'] );
+
+       /**
+        * Filter list of allowed mime types and file extensions.
+        *
+        * @since 2.0.0
+        *
+        * @param array            $t    Mime types keyed by the file extension regex corresponding to
+        *                               those types. 'swf' and 'exe' removed from full list. 'htm|html' also
+        *                               removed depending on '$user' capabilities.
+        * @param int|WP_User|null $user User ID, User object or null if not provided (indicates current user).
+        */
+       return apply_filters( 'upload_mimes', $t, $user );
 }
 
 /**
@@ -2018,8 +2206,6 @@ function get_allowed_mime_types() {
  * If the action has the nonce explain message, then it will be displayed along
  * with the "Are you sure?" message.
  *
- * @package WordPress
- * @subpackage Security
  * @since 2.0.4
  *
  * @param string $action The nonce action.
@@ -2028,7 +2214,8 @@ function wp_nonce_ays( $action ) {
        $title = __( 'WordPress Failure Notice' );
        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() );
+               $redirect_to = isset( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
+               $html .= sprintf( __( "Do you really want to <a href='%s'>log out</a>?"), wp_logout_url( $redirect_to ) );
        } else {
                $html = __( 'Are you sure you want to do this?' );
                if ( wp_get_referer() )
@@ -2054,12 +2241,34 @@ function wp_nonce_ays( $action ) {
  * @param string|array $args Optional arguments to control behavior.
  */
 function wp_die( $message = '', $title = '', $args = array() ) {
-       if ( defined( 'DOING_AJAX' ) && DOING_AJAX )
+       if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
+               /**
+                * Filter callback for killing WordPress execution for AJAX requests.
+                *
+                * @since 3.4.0
+                *
+                * @param callback $function Callback function name.
+                */
                $function = apply_filters( 'wp_die_ajax_handler', '_ajax_wp_die_handler' );
-       elseif ( defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST )
+       } elseif ( defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST ) {
+               /**
+                * Filter callback for killing WordPress execution for XML-RPC requests.
+                *
+                * @since 3.4.0
+                *
+                * @param callback $function Callback function name.
+                */
                $function = apply_filters( 'wp_die_xmlrpc_handler', '_xmlrpc_wp_die_handler' );
-       else
+       } else {
+               /**
+                * Filter callback for killing WordPress execution for all non-AJAX, non-XML-RPC requests.
+                *
+                * @since 3.0.0
+                *
+                * @param callback $function Callback function name.
+                */
                $function = apply_filters( 'wp_die_handler', '_default_wp_die_handler' );
+       }
 
        call_user_func( $function, $message, $title, $args );
 }
@@ -2135,24 +2344,23 @@ function _default_wp_die_handler( $message, $title = '', $args = array() ) {
        <title><?php echo $title ?></title>
        <style type="text/css">
                html {
-                       background: #f9f9f9;
+                       background: #f1f1f1;
                }
                body {
                        background: #fff;
-                       color: #333;
-                       font-family: sans-serif;
+                       color: #444;
+                       font-family: "Open Sans", sans-serif;
                        margin: 2em auto;
                        padding: 1em 2em;
-                       -webkit-border-radius: 3px;
-                       border-radius: 3px;
-                       border: 1px solid #dfdfdf;
                        max-width: 700px;
+                       -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13);
+                       box-shadow: 0 1px 3px rgba(0,0,0,0.13);
                }
                h1 {
                        border-bottom: 1px solid #dadada;
                        clear: both;
                        color: #666;
-                       font: 24px Georgia, "Times New Roman", Times, serif;
+                       font: 24px "Open Sans", sans-serif;
                        margin: 30px 0 0 0;
                        padding: 0;
                        padding-bottom: 7px;
@@ -2180,31 +2388,28 @@ function _default_wp_die_handler( $message, $title = '', $args = array() ) {
                        color: #D54E21;
                }
                .button {
+                       background: #f7f7f7;
+                       border: 1px solid #cccccc;
+                       color: #555;
                        display: inline-block;
                        text-decoration: none;
-                       font-size: 14px;
-                       line-height: 23px;
-                       height: 24px;
+                       font-size: 13px;
+                       line-height: 26px;
+                       height: 28px;
                        margin: 0;
                        padding: 0 10px 1px;
                        cursor: pointer;
-                       border-width: 1px;
-                       border-style: solid;
                        -webkit-border-radius: 3px;
+                       -webkit-appearance: none;
                        border-radius: 3px;
                        white-space: nowrap;
                        -webkit-box-sizing: border-box;
                        -moz-box-sizing:    border-box;
                        box-sizing:         border-box;
-                       background: #f3f3f3;
-                       background-image: -webkit-gradient(linear, left top, left bottom, from(#fefefe), to(#f4f4f4));
-                       background-image: -webkit-linear-gradient(top, #fefefe, #f4f4f4);
-                       background-image:    -moz-linear-gradient(top, #fefefe, #f4f4f4);
-                       background-image:      -o-linear-gradient(top, #fefefe, #f4f4f4);
-                       background-image:   linear-gradient(to bottom, #fefefe, #f4f4f4);
-                       border-color: #bbb;
-                       color: #333;
-                       text-shadow: 0 1px 0 #fff;
+
+                       -webkit-box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0,0,0,.08);
+                       box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0,0,0,.08);
+                       vertical-align: top;
                }
 
                .button.button-large {
@@ -2215,13 +2420,7 @@ function _default_wp_die_handler( $message, $title = '', $args = array() ) {
 
                .button:hover,
                .button:focus {
-                       background: #f3f3f3;
-                       background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f3f3f3));
-                       background-image: -webkit-linear-gradient(top, #fff, #f3f3f3);
-                       background-image:    -moz-linear-gradient(top, #fff, #f3f3f3);
-                       background-image:     -ms-linear-gradient(top, #fff, #f3f3f3);
-                       background-image:      -o-linear-gradient(top, #fff, #f3f3f3);
-                       background-image:   linear-gradient(to bottom, #fff, #f3f3f3);
+                       background: #fafafa;
                        border-color: #999;
                        color: #222;
                }
@@ -2232,17 +2431,9 @@ function _default_wp_die_handler( $message, $title = '', $args = array() ) {
                }
 
                .button:active {
-                       outline: none;
                        background: #eee;
-                       background-image: -webkit-gradient(linear, left top, left bottom, from(#f4f4f4), to(#fefefe));
-                       background-image: -webkit-linear-gradient(top, #f4f4f4, #fefefe);
-                       background-image:    -moz-linear-gradient(top, #f4f4f4, #fefefe);
-                       background-image:     -ms-linear-gradient(top, #f4f4f4, #fefefe);
-                       background-image:      -o-linear-gradient(top, #f4f4f4, #fefefe);
-                       background-image:   linear-gradient(to bottom, #f4f4f4, #fefefe);
                        border-color: #999;
                        color: #333;
-                       text-shadow: 0 -1px 0 #fff;
                        -webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
                        box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
                }
@@ -2374,7 +2565,6 @@ function wp_send_json_error( $data = null ) {
  * development environment.
  *
  * @access private
- * @package WordPress
  * @since 2.2.0
  *
  * @param string $url URL for the home location
@@ -2394,7 +2584,6 @@ function _config_wp_home( $url = '' ) {
  * your localhost while not having to change the database to your URL.
  *
  * @access private
- * @package WordPress
  * @since 2.2.0
  *
  * @param string $url URL to set the WordPress site location.
@@ -2412,27 +2601,27 @@ function _config_wp_siteurl( $url = '' ) {
  * Will only set the direction to 'rtl', if the WordPress locale has the text
  * direction set to 'rtl'.
  *
- * Fills in the 'directionality', 'plugins', and 'theme_advanced_button1' array
- * keys. These keys are then returned in the $input array.
+ * Fills in the 'directionality' setting, enables the 'directionality' plugin,
+ * and adds the 'ltr' button to 'toolbar1', formerly 'theme_advanced_buttons1' array
+ * keys. These keys are then returned in the $input (TinyMCE settings) array.
  *
  * @access private
- * @package WordPress
- * @subpackage MCE
  * @since 2.1.0
  *
- * @param array $input MCE plugin array.
+ * @param array $input MCE settings array.
  * @return array Direction set for 'rtl', if needed by locale.
  */
 function _mce_set_direction( $input ) {
        if ( is_rtl() ) {
                $input['directionality'] = 'rtl';
                $input['plugins'] .= ',directionality';
-               $input['theme_advanced_buttons1'] .= ',ltr';
+               $input['toolbar1'] .= ',ltr';
        }
 
        return $input;
 }
 
+
 /**
  * Convert smiley code to the icon graphic file equivalent.
  *
@@ -2522,7 +2711,7 @@ function smilies_init() {
         */
        krsort($wpsmiliestrans);
 
-       $wp_smiliessearch = '/(?:\s|^)';
+       $wp_smiliessearch = '/((?:\s|^)';
 
        $subchar = '';
        foreach ( (array) $wpsmiliestrans as $smiley => $img ) {
@@ -2532,7 +2721,7 @@ function smilies_init() {
                // new subpattern?
                if ($firstchar != $subchar) {
                        if ($subchar != '') {
-                               $wp_smiliessearch .= ')|(?:\s|^)';
+                               $wp_smiliessearch .= ')(?=\s|$))|((?:\s|^)'; ;
                        }
                        $subchar = $firstchar;
                        $wp_smiliessearch .= preg_quote($firstchar, '/') . '(?:';
@@ -2542,7 +2731,8 @@ function smilies_init() {
                $wp_smiliessearch .= preg_quote($rest, '/');
        }
 
-       $wp_smiliessearch .= ')(?:\s|$)/m';
+       $wp_smiliessearch .= ')(?=\s|$))/m';
+
 }
 
 /**
@@ -2701,8 +2891,17 @@ function wp_list_pluck( $list, $field ) {
  * @uses add_action() Calls '_admin_menu' hook with 'wp_widgets_add_menu' value.
  */
 function wp_maybe_load_widgets() {
-       if ( ! apply_filters('load_default_widgets', true) )
+       /**
+        * Filter whether to load the Widgets library.
+        *
+        * @since 2.8.0
+        *
+        * @param bool $wp_maybe_load_widgets Whether to load the Widgets library.
+        *                                    Default true.
+        */
+       if ( ! apply_filters( 'load_default_widgets', true ) ) {
                return;
+       }
        require_once( ABSPATH . WPINC . '/default-widgets.php' );
        add_action( '_admin_menu', 'wp_widgets_add_menu' );
 }
@@ -2756,6 +2955,8 @@ function wp_ob_end_flush_all() {
 function dead_db() {
        global $wpdb;
 
+       wp_load_translations_early();
+
        // Load custom DB error template, if present.
        if ( file_exists( WP_CONTENT_DIR . '/db-error.php' ) ) {
                require_once( WP_CONTENT_DIR . '/db-error.php' );
@@ -2770,8 +2971,6 @@ function dead_db() {
        status_header( 500 );
        nocache_headers();
        header( 'Content-Type: text/html; charset=utf-8' );
-
-       wp_load_translations_early();
 ?>
 <!DOCTYPE html>
 <html xmlns="http://www.w3.org/1999/xhtml"<?php if ( is_rtl() ) echo ' dir="rtl"'; ?>>
@@ -2846,25 +3045,33 @@ function url_is_accessable_via_ssl($url)
  *
  * This function is to be used in every function that is deprecated.
  *
- * @package WordPress
- * @subpackage Debug
  * @since 2.5.0
  * @access private
  *
- * @uses do_action() Calls 'deprecated_function_run' and passes the function name, what to use instead,
- *   and the version the function was deprecated in.
- * @uses apply_filters() Calls 'deprecated_function_trigger_error' and expects boolean value of true to do
- *   trigger or false to not trigger error.
- *
  * @param string $function The function that was called
  * @param string $version The version of WordPress that deprecated the function
  * @param string $replacement Optional. The function that should have been called
  */
 function _deprecated_function( $function, $version, $replacement = null ) {
 
+       /**
+        * Fires when a deprecated function is called.
+        *
+        * @since 2.5.0
+        *
+        * @param string $function    The function that was called.
+        * @param string $replacement The function that should have been called.
+        * @param string $version     The version of WordPress that deprecated the function.
+        */
        do_action( 'deprecated_function_run', $function, $replacement, $version );
 
-       // Allow plugin to filter the output error trigger
+       /**
+        * Filter whether to trigger an error for deprecated functions.
+        *
+        * @since 2.5.0
+        *
+        * @param bool $trigger Whether to trigger the error for deprecated functions. Default true.
+        */
        if ( WP_DEBUG && apply_filters( 'deprecated_function_trigger_error', true ) ) {
                if ( function_exists( '__' ) ) {
                        if ( ! is_null( $replacement ) )
@@ -2891,16 +3098,9 @@ function _deprecated_function( $function, $version, $replacement = null ) {
  *
  * This function is to be used in every file that is deprecated.
  *
- * @package WordPress
- * @subpackage Debug
  * @since 2.5.0
  * @access private
  *
- * @uses do_action() Calls 'deprecated_file_included' and passes the file name, what to use instead,
- *   the version in which the file was deprecated, and any message regarding the change.
- * @uses apply_filters() Calls 'deprecated_file_trigger_error' and expects boolean value of true to do
- *   trigger or false to not trigger error.
- *
  * @param string $file The file that was included
  * @param string $version The version of WordPress that deprecated the file
  * @param string $replacement Optional. The file that should have been included based on ABSPATH
@@ -2908,9 +3108,25 @@ function _deprecated_function( $function, $version, $replacement = null ) {
  */
 function _deprecated_file( $file, $version, $replacement = null, $message = '' ) {
 
+       /**
+        * Fires when a deprecated file is called.
+        *
+        * @since 2.5.0
+        *
+        * @param string $file        The file that was called.
+        * @param string $replacement The file that should have been included based on ABSPATH.
+        * @param string $version     The version of WordPress that deprecated the file.
+        * @param string $message     A message regarding the change.
+        */
        do_action( 'deprecated_file_included', $file, $replacement, $version, $message );
 
-       // Allow plugin to filter the output error trigger
+       /**
+        * Filter whether to trigger an error for deprecated files.
+        *
+        * @since 2.5.0
+        *
+        * @param bool $trigger Whether to trigger the error for deprecated files. Default true.
+        */
        if ( WP_DEBUG && apply_filters( 'deprecated_file_trigger_error', true ) ) {
                $message = empty( $message ) ? '' : ' ' . $message;
                if ( function_exists( '__' ) ) {
@@ -2944,25 +3160,33 @@ function _deprecated_file( $file, $version, $replacement = null, $message = '' )
  *
  * The current behavior is to trigger a user error if WP_DEBUG is true.
  *
- * @package WordPress
- * @subpackage Debug
  * @since 3.0.0
  * @access private
  *
- * @uses do_action() Calls 'deprecated_argument_run' and passes the function name, a message on the change,
- *   and the version in which the argument was deprecated.
- * @uses apply_filters() Calls 'deprecated_argument_trigger_error' and expects boolean value of true to do
- *   trigger or false to not trigger error.
- *
  * @param string $function The function that was called
  * @param string $version The version of WordPress that deprecated the argument used
  * @param string $message Optional. A message regarding the change.
  */
 function _deprecated_argument( $function, $version, $message = null ) {
 
+       /**
+        * Fires when a deprecated argument is called.
+        *
+        * @since 3.0.0
+        *
+        * @param string $function The function that was called.
+        * @param string $message  A message regarding the change.
+        * @param string $version  The version of WordPress that deprecated the argument used.
+        */
        do_action( 'deprecated_argument_run', $function, $message, $version );
 
-       // Allow plugin to filter the output error trigger
+       /**
+        * Filter whether to trigger an error for deprecated arguments.
+        *
+        * @since 3.0.0
+        *
+        * @param bool $trigger Whether to trigger the error for deprecated arguments. Default true.
+        */
        if ( WP_DEBUG && apply_filters( 'deprecated_argument_trigger_error', true ) ) {
                if ( function_exists( '__' ) ) {
                        if ( ! is_null( $message ) )
@@ -2987,24 +3211,33 @@ function _deprecated_argument( $function, $version, $message = null ) {
  *
  * The current behavior is to trigger a user error if WP_DEBUG is true.
  *
- * @package WordPress
- * @subpackage Debug
  * @since 3.1.0
  * @access private
  *
- * @uses do_action() Calls 'doing_it_wrong_run' and passes the function arguments.
- * @uses apply_filters() Calls 'doing_it_wrong_trigger_error' and expects boolean value of true to do
- *   trigger or false to not trigger error.
- *
  * @param string $function The function that was called.
  * @param string $message A message explaining what has been done incorrectly.
  * @param string $version The version of WordPress where the message was added.
  */
 function _doing_it_wrong( $function, $message, $version ) {
 
+       /**
+        * Fires when the given function is being used incorrectly.
+        *
+        * @since 3.1.0
+        *
+        * @param string $function The function that was called.
+        * @param string $message  A message explaining what has been done incorrectly.
+        * @param string $version  The version of WordPress where the message was added.
+        */
        do_action( 'doing_it_wrong_run', $function, $message, $version );
 
-       // Allow plugin to filter the output error trigger
+       /**
+        * Filter whether to trigger an error for _doing_it_wrong() calls.
+        *
+        * @since 3.1.0
+        *
+        * @param bool $trigger Whether to trigger the error for _doing_it_wrong() calls. Default true.
+        */
        if ( WP_DEBUG && apply_filters( 'doing_it_wrong_trigger_error', true ) ) {
                if ( function_exists( '__' ) ) {
                        $version = is_null( $version ) ? '' : sprintf( __( '(This message was added in version %s.)' ), $version );
@@ -3084,7 +3317,14 @@ function iis7_supports_permalinks() {
                $supports_permalinks = class_exists('DOMDocument') && isset($_SERVER['IIS_UrlRewriteModule']) && ( php_sapi_name() == 'cgi-fcgi' );
        }
 
-       return apply_filters('iis7_supports_permalinks', $supports_permalinks);
+       /**
+        * Filter whether IIS 7+ supports pretty permalinks.
+        *
+        * @since 2.8.0
+        *
+        * @param bool $supports_permalinks Whether IIS7 supports permalinks. Default false.
+        */
+       return apply_filters( 'iis7_supports_permalinks', $supports_permalinks );
 }
 
 /**
@@ -3190,8 +3430,36 @@ function wp_guess_url() {
        if ( defined('WP_SITEURL') && '' != WP_SITEURL ) {
                $url = WP_SITEURL;
        } else {
+               $abspath_fix = str_replace( '\\', '/', ABSPATH );
+               $script_filename_dir = dirname( $_SERVER['SCRIPT_FILENAME'] );
+
+               // The request is for the admin
+               if ( strpos( $_SERVER['REQUEST_URI'], 'wp-admin' ) !== false || strpos( $_SERVER['REQUEST_URI'], 'wp-login.php' ) !== false ) {
+                       $path = preg_replace( '#/(wp-admin/.*|wp-login.php)#i', '', $_SERVER['REQUEST_URI'] );
+
+               // The request is for a file in ABSPATH
+               } elseif ( $script_filename_dir . '/' == $abspath_fix ) {
+                       // Strip off any file/query params in the path
+                       $path = preg_replace( '#/[^/]*$#i', '', $_SERVER['PHP_SELF'] );
+
+               } else {
+                       if ( false !== strpos( $_SERVER['SCRIPT_FILENAME'], $abspath_fix ) ) {
+                               // Request is hitting a file inside ABSPATH
+                               $directory = str_replace( ABSPATH, '', $script_filename_dir );
+                               // Strip off the sub directory, and any file/query paramss
+                               $path = preg_replace( '#/' . preg_quote( $directory, '#' ) . '/[^/]*$#i', '' , $_SERVER['REQUEST_URI'] );
+                       } elseif ( false !== strpos( $abspath_fix, $script_filename_dir ) ) {
+                               // Request is hitting a file above ABSPATH
+                               $subdirectory = substr( $abspath_fix, strpos( $abspath_fix, $script_filename_dir ) + strlen( $script_filename_dir ) );
+                               // Strip off any file/query params from the path, appending the sub directory to the install
+                               $path = preg_replace( '#/[^/]*$#i', '' , $_SERVER['REQUEST_URI'] ) . $subdirectory;
+                       } else {
+                               $path = $_SERVER['REQUEST_URI'];
+                       }
+               }
+
                $schema = is_ssl() ? 'https://' : 'http://'; // set_url_scheme() is not defined yet
-               $url = preg_replace( '#/(wp-admin/.*|wp-login.php)#i', '', $schema . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] );
+               $url = $schema . $_SERVER['HTTP_HOST'] . $path;
        }
 
        return rtrim($url, '/');
@@ -3242,25 +3510,61 @@ function wp_suspend_cache_invalidation($suspend = true) {
 }
 
 /**
- * Is main site?
- *
+ * Whether a site is the main site of the current network.
  *
  * @since 3.0.0
- * @package WordPress
  *
- * @param int $blog_id optional blog id to test (default current blog)
- * @return bool True if not multisite or $blog_id is main site
+ * @param int $site_id Optional. Site ID to test. Defaults to current site.
+ * @return bool True if $site_id is the main site of the network, or if not running multisite.
  */
-function is_main_site( $blog_id = '' ) {
+function is_main_site( $site_id = null ) {
+       // This is the current network's information; 'site' is old terminology.
        global $current_site;
 
        if ( ! is_multisite() )
                return true;
 
-       if ( ! $blog_id )
-               $blog_id = get_current_blog_id();
+       if ( ! $site_id )
+               $site_id = get_current_blog_id();
+
+       return (int) $site_id === (int) $current_site->blog_id;
+}
+
+/**
+ * Whether a network is the main network of the multisite install.
+ *
+ * @since 3.7.0
+ *
+ * @param int $network_id Optional. Network ID to test. Defaults to current network.
+ * @return bool True if $network_id is the main network, or if not running multisite.
+ */
+function is_main_network( $network_id = null ) {
+       global $wpdb;
+
+       if ( ! is_multisite() )
+               return true;
+
+       $current_network_id = (int) get_current_site()->id;
+
+       if ( ! $network_id )
+               $network_id = $current_network_id;
+       $network_id = (int) $network_id;
+
+       if ( defined( 'PRIMARY_NETWORK_ID' ) )
+               return $network_id === (int) PRIMARY_NETWORK_ID;
+
+       if ( 1 === $current_network_id )
+               return $network_id === $current_network_id;
 
-       return $blog_id == $current_site->blog_id;
+       $primary_network_id = (int) wp_cache_get( 'primary_network_id', 'site-options' );
+
+       if ( $primary_network_id )
+               return $network_id === $primary_network_id;
+
+       $primary_network_id = (int) $wpdb->get_var( "SELECT id FROM $wpdb->site ORDER BY id LIMIT 1" );
+       wp_cache_add( 'primary_network_id', $primary_network_id, 'site-options' );
+
+       return $network_id === $primary_network_id;
 }
 
 /**
@@ -3268,7 +3572,6 @@ function is_main_site( $blog_id = '' ) {
  *
  *
  * @since 3.0.0
- * @package WordPress
  *
  * @return bool True if multisite and global terms enabled
  */
@@ -3278,6 +3581,17 @@ function global_terms_enabled() {
 
        static $global_terms = null;
        if ( is_null( $global_terms ) ) {
+
+               /**
+                * Filter whether global terms are enabled.
+                *
+                * Passing a non-null value to the filter will effectively short-circuit the function,
+                * returning the value of the 'global_terms_enabled' site option instead.
+                *
+                * @since 3.0.0
+                *
+                * @param null $anbled Whether global terms are enabled.
+                */
                $filter = apply_filters( 'global_terms_enabled', null );
                if ( ! is_null( $filter ) )
                        $global_terms = (bool) $filter;
@@ -3310,12 +3624,12 @@ function wp_timezone_override_offset() {
 }
 
 /**
- * {@internal Missing Short Description}}
+ * Sort-helper for timezones.
  *
  * @since 2.9.0
  *
- * @param unknown_type $a
- * @param unknown_type $b
+ * @param array $a
+ * @param array $b
  * @return int
  */
 function _wp_timezone_choice_usort_callback( $a, $b ) {
@@ -3573,6 +3887,16 @@ function get_file_data( $file, $default_headers, $context = '' ) {
        // Make sure we catch CR-only line endings.
        $file_data = str_replace( "\r", "\n", $file_data );
 
+       /**
+        * Filter extra file headers by context.
+        *
+        * The dynamic portion of the hook name, $context, refers to the context
+        * where extra headers might be loaded.
+        *
+        * @since 2.9.0
+        *
+        * @param array $extra_context_headers Empty array by default.
+        */
        if ( $context && $extra_headers = apply_filters( "extra_{$context}_headers", array() ) ) {
                $extra_headers = array_combine( $extra_headers, $extra_headers ); // keys equal values
                $all_headers = array_merge( $extra_headers, (array) $default_headers );
@@ -3590,19 +3914,6 @@ function get_file_data( $file, $default_headers, $context = '' ) {
        return $all_headers;
 }
 
-/**
- * Used internally to tidy up the search terms.
- *
- * @access private
- * @since 2.9.0
- *
- * @param string $t
- * @return string
- */
-function _search_terms_tidy($t) {
-       return trim($t, "\"'\n\r ");
-}
-
 /**
  * Returns true.
  *
@@ -3635,7 +3946,6 @@ function __return_false() {
  * Useful for returning 0 to filters easily.
  *
  * @since 3.0.0
- * @see __return_zero()
  * @return int 0
  */
 function __return_zero() {
@@ -3648,7 +3958,6 @@ function __return_zero() {
  * Useful for returning an empty array to filters easily.
  *
  * @since 3.0.0
- * @see __return_zero()
  * @return array Empty array
  */
 function __return_empty_array() {
@@ -3667,6 +3976,19 @@ function __return_null() {
        return null;
 }
 
+/**
+ * Returns an empty string.
+ *
+ * Useful for returning an empty string to filters easily.
+ *
+ * @since 3.7.0
+ * @see __return_null()
+ * @return string Empty string
+ */
+function __return_empty_string() {
+       return '';
+}
+
 /**
  * Send a HTTP header to disable content type sniffing in browsers which support it.
  *
@@ -3796,6 +4118,14 @@ function wp_allowed_protocols() {
 
        if ( empty( $protocols ) ) {
                $protocols = array( 'http', 'https', 'ftp', 'ftps', 'mailto', 'news', 'irc', 'gopher', 'nntp', 'feed', 'telnet', 'mms', 'rtsp', 'svn', 'tel', 'fax', 'xmpp' );
+
+               /**
+                * Filter the list of protocols allowed in HTML attributes.
+                * 
+                * @since 3.0.0 
+                *
+                * @param array $protocols Array of allowed protocols e.g. 'http', 'ftp', 'tel', and more.
+                */
                $protocols = apply_filters( 'kses_allowed_protocols', $protocols );
        }
 
@@ -3806,7 +4136,7 @@ function wp_allowed_protocols() {
  * Return a comma separated string of functions that have been called to get to the current point in code.
  *
  * @link http://core.trac.wordpress.org/ticket/19589
- * @since 3.4
+ * @since 3.4.0
  *
  * @param string $ignore_class A class to ignore all function calls within - useful when you want to just give info about the callee
  * @param int $skip_frames A number of stack frames to skip - useful for unwinding back to the source of the issue
@@ -3913,6 +4243,14 @@ function wp_is_stream( $path ) {
  * @return bool true|false
  */
 function wp_checkdate( $month, $day, $year, $source_date ) {
+       /**
+        * Filter whether the given date is valid for the Gregorian calendar.
+        *
+        * @since 3.5.0
+        *
+        * @param bool   $checkdate   Whether the given date is valid.
+        * @param string $source_date Date to check.
+        */
        return apply_filters( 'wp_checkdate', checkdate( $month, $day, $year ), $source_date );
 }
 
@@ -3938,6 +4276,14 @@ function wp_auth_check_load() {
        $hidden = array( 'update', 'update-network', 'update-core', 'update-core-network', 'upgrade', 'upgrade-network', 'network' );
        $show = ! in_array( $screen->id, $hidden );
 
+       /**
+        * Filter whether to load the authentication check.
+        *
+        * @since 3.6.0
+        *
+        * @param bool      $show   Whether to load the authentication check.
+        * @param WP_Screen $screen The current screen object.
+        */
        if ( apply_filters( 'wp_auth_check_load', $show, $screen ) ) {
                wp_enqueue_style( 'wp-auth-check' );
                wp_enqueue_script( 'wp-auth-check' );
@@ -3960,7 +4306,13 @@ function wp_auth_check_html() {
        if ( $same_domain && force_ssl_login() && ! force_ssl_admin() )
                $same_domain = false;
 
-       // Let plugins change this if they know better.
+       /**
+        * Filter whether the authentication check originated at the same domain.
+        *
+        * @since 3.6.0
+        *
+        * @param bool $same_domain Whether the authentication check originated at the same domain.
+        */
        $same_domain = apply_filters( 'wp_auth_check_same_domain', $same_domain );
        $wrap_class = $same_domain ? 'hidden' : 'hidden fallback';
 
@@ -3996,7 +4348,7 @@ function wp_auth_check_html() {
  *
  * @since 3.6.0
  */
-function wp_auth_check( $response, $data ) {
+function wp_auth_check( $response ) {
        $response['wp-auth-check'] = is_user_logged_in() && empty( $GLOBALS['login_grace_period'] );
        return $response;
 }
@@ -4041,3 +4393,54 @@ function _canonical_charset( $charset ) {
 
        return $charset;
 }
+
+/**
+ * Sets the mbstring internal encoding to a binary safe encoding whne func_overload is enabled.
+ *
+ * When mbstring.func_overload is in use for multi-byte encodings, the results from strlen() and
+ * similar functions respect the utf8 characters, causing binary data to return incorrect lengths.
+ *
+ * This function overrides the mbstring encoding to a binary-safe encoding, and resets it to the
+ * users expected encoding afterwards through the `reset_mbstring_encoding` function.
+ *
+ * It is safe to recursively call this function, however each `mbstring_binary_safe_encoding()`
+ * call must be followed up with an equal number of `reset_mbstring_encoding()` calls.
+ *
+ * @see reset_mbstring_encoding()
+ *
+ * @since 3.7.0
+ *
+ * @param bool $reset Whether to reset the encoding back to a previously-set encoding.
+ */
+function mbstring_binary_safe_encoding( $reset = false ) {
+       static $encodings = array();
+       static $overloaded = null;
+
+       if ( is_null( $overloaded ) )
+               $overloaded = function_exists( 'mb_internal_encoding' ) && ( ini_get( 'mbstring.func_overload' ) & 2 );
+
+       if ( false === $overloaded )
+               return;
+
+       if ( ! $reset ) {
+               $encoding = mb_internal_encoding();
+               array_push( $encodings, $encoding );
+               mb_internal_encoding( 'ISO-8859-1' );
+       }
+
+       if ( $reset && $encodings ) {
+               $encoding = array_pop( $encodings );
+               mb_internal_encoding( $encoding );
+       }
+}
+
+/**
+ * Resets the mbstring internal encoding to a users previously set encoding.
+ *
+ * @see mbstring_binary_safe_encoding()
+ *
+ * @since 3.7.0
+ */
+function reset_mbstring_encoding() {
+       mbstring_binary_safe_encoding( true );
+}