Make WordPress Core


Ignore:
Timestamp:
01/04/2013 10:13:51 AM (12 years ago)
Author:
westi
Message:

Tighten our braces. Fixes #23118 props evansolomon.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/default-constants.php

    r22531 r23265  
    1313 * @since 3.0.0
    1414 */
    15 function wp_initial_constants( ) {
     15function wp_initial_constants() {
    1616    global $blog_id;
    1717
     
    9090 * @since 3.0.0
    9191 */
    92 function wp_plugin_directory_constants( ) {
     92function wp_plugin_directory_constants() {
    9393    if ( !defined('WP_CONTENT_URL') )
    9494        define( 'WP_CONTENT_URL', get_option('siteurl') . '/wp-content'); // full url - WP_CONTENT_DIR is defined further up
     
    151151 * @since 3.0.0
    152152 */
    153 function wp_cookie_constants( ) {
     153function wp_cookie_constants() {
    154154    /**
    155155     * Used to guarantee unique hash cookies
     
    236236 * @since 3.0.0
    237237 */
    238 function wp_ssl_constants( ) {
     238function wp_ssl_constants() {
    239239    /**
    240240     * @since 2.6.0
     
    257257 * @since 3.0.0
    258258 */
    259 function wp_functionality_constants( ) {
     259function wp_functionality_constants() {
    260260    /**
    261261     * @since 2.5.0
     
    285285 * @since 3.0.0
    286286 */
    287 function wp_templating_constants( ) {
     287function wp_templating_constants() {
    288288    /**
    289289     * Filesystem path to the current active template directory
Note: See TracChangeset for help on using the changeset viewer.