Make WordPress Core

Changeset 19593 for trunk/wp-app.php


Ignore:
Timestamp:
12/13/2011 11:45:31 PM (13 years ago)
Author:
ryan
Message:

Use one space, not two, after trailing punctuation. fixes #19537

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-app.php

    r19074 r19593  
    286286        // check to see if AtomPub is enabled
    287287        if ( !get_option( 'enable_app' ) )
    288             $this->forbidden( sprintf( __( 'AtomPub services are disabled on this site.  An admin user can enable them at %s' ), admin_url('options-writing.php') ) );
     288            $this->forbidden( sprintf( __( 'AtomPub services are disabled on this site. An admin user can enable them at %s' ), admin_url('options-writing.php') ) );
    289289
    290290        // dispatch
     
    371371        $cats = get_categories(array('hierarchical' => 0, 'hide_empty' => 0));
    372372        foreach ( (array) $cats as $cat ) {
    373             $categories .= "    <category term=\"" . esc_attr($cat->name) .  "\" />\n";
     373            $categories .= "    <category term=\"" . esc_attr($cat->name) . "\" />\n";
    374374        }
    375375        $output = <<<EOD
Note: See TracChangeset for help on using the changeset viewer.