Pinking shears.

Built from https://develop.svn.wordpress.org/trunk@29707


git-svn-id: http://core.svn.wordpress.org/trunk@29481 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Nacin 2014-09-04 15:23:16 +00:00
parent 89e9363adb
commit f7392ef917
14 changed files with 23 additions and 23 deletions

View File

@ -23,14 +23,14 @@ class WP_Comments_List_Table extends WP_List_Table {
/**
* Constructor.
*
*
* @since 3.1.0
* @access public
*
* @see WP_List_Table::__construct() for more information on default arguments.
*
* @param array $args An associative array of arguments.
*/
*/
public function __construct( $args = array() ) {
global $post_id;

View File

@ -196,7 +196,7 @@ class WP_Importer {
/**
* Bump up the request timeout for http requests
*
* @param int $val
* @param int $val
* @return int
*/
public function bump_request_timeout( $val ) {

View File

@ -11,14 +11,14 @@ class WP_Links_List_Table extends WP_List_Table {
/**
* Constructor.
*
*
* @since 3.1.0
* @access public
*
* @see WP_List_Table::__construct() for more information on default arguments.
*
* @param array $args An associative array of arguments.
*/
*/
public function __construct( $args = array() ) {
parent::__construct( array(
'plural' => 'bookmarks',

View File

@ -89,7 +89,7 @@ class WP_List_Table {
* screen. If left null, the current screen will be automatically set.
* Default null.
* }
*/
*/
public function __construct( $args = array() ) {
$args = wp_parse_args( $args, array(
'plural' => '',

View File

@ -11,14 +11,14 @@ class WP_MS_Sites_List_Table extends WP_List_Table {
/**
* Constructor.
*
*
* @since 3.1.0
* @access public
*
* @see WP_List_Table::__construct() for more information on default arguments.
*
* @param array $args An associative array of arguments.
*/
*/
public function __construct( $args = array() ) {
parent::__construct( array(
'plural' => 'sites',

View File

@ -11,14 +11,14 @@ class WP_Plugins_List_Table extends WP_List_Table {
/**
* Constructor.
*
*
* @since 3.1.0
* @access public
*
* @see WP_List_Table::__construct() for more information on default arguments.
*
* @param array $args An associative array of arguments.
*/
*/
public function __construct( $args = array() ) {
global $status, $page;

View File

@ -47,7 +47,7 @@ class WP_Posts_List_Table extends WP_List_Table {
/**
* Constructor.
*
*
* @since 3.1.0
* @access public
*

View File

@ -13,14 +13,14 @@ class WP_Terms_List_Table extends WP_List_Table {
/**
* Constructor.
*
*
* @since 3.1.0
* @access public
*
* @see WP_List_Table::__construct() for more information on default arguments.
*
* @param array $args An associative array of arguments.
*/
*/
public function __construct( $args = array() ) {
global $post_type, $taxonomy, $action, $tax;

View File

@ -14,14 +14,14 @@ class WP_Themes_List_Table extends WP_List_Table {
/**
* Constructor.
*
*
* @since 3.1.0
* @access public
*
* @see WP_List_Table::__construct() for more information on default arguments.
*
* @param array $args An associative array of arguments.
*/
*/
public function __construct( $args = array() ) {
parent::__construct( array(
'ajax' => true,

View File

@ -30,14 +30,14 @@ class WP_Users_List_Table extends WP_List_Table {
/**
* Constructor.
*
*
* @since 3.1.0
* @access public
*
* @see WP_List_Table::__construct() for more information on default arguments.
*
* @param array $args An associative array of arguments.
*/
*/
public function __construct( $args = array() ) {
parent::__construct( array(
'singular' => 'user',

View File

@ -832,7 +832,7 @@ add_filter( 'heartbeat_received', 'heartbeat_autosave', 500, 2 );
* as they disregard the autocomplete setting on the editor textarea. That can break the editor
* when the user navigates to it with the browser's Back button. See #28037
*
* @since 4.0
* @since 4.0
*/
function post_form_autocomplete_off() {
global $is_safari, $is_chrome;

View File

@ -248,7 +248,7 @@ case 'delete':
/**
* Fires at the end of the delete users form prior to the confirm button.
*
* @since 4.0.0
* @since 4.0.0
*
* @param WP_User $current_user WP_User object for the user being deleted.
*/

View File

@ -15,7 +15,7 @@ class WP_Embed {
/**
* When an URL cannot be embedded, return false instead of returning a link
* or the URL. Bypasses the 'embed_maybe_make_link' filter.
*/
*/
public $return_false_on_fail = false;
/**

View File

@ -147,7 +147,7 @@ function wptexturize($text, $reset = false) {
$dynamic_characters['apos'] = array_keys( $dynamic );
$dynamic_replacements['apos'] = array_values( $dynamic );
$dynamic = array();
// Quoted Numbers like "42"
if ( '"' !== $opening_quote && '"' !== $closing_quote ) {
$dynamic[ '/(?<=\A|' . $spaces . ')"(\d[.,\d]*)"/' ] = $opening_quote . '$1' . $closing_quote;
@ -167,11 +167,11 @@ function wptexturize($text, $reset = false) {
if ( '"' !== $closing_quote ) {
$dynamic[ '/"/' ] = $closing_quote;
}
$dynamic_characters['quote'] = array_keys( $dynamic );
$dynamic_replacements['quote'] = array_values( $dynamic );
$dynamic = array();
// Dashes and spaces
$dynamic[ '/---/' ] = $em_dash;
$dynamic[ '/(?<=' . $spaces . ')--(?=' . $spaces . ')/' ] = $em_dash;