Skip to:
Content

BuddyPress.org

Changeset 3185


Ignore:
Timestamp:
08/12/2010 05:45:09 AM (16 years ago)
Author:
johnjamesjacoby
Message:

Whitespace cleanup in bp-core.php

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/1.2/bp-core.php

    r3155 r3185  
    16441644
    16451645    // Make sure we don't call status_header() in bp_core_do_catch_uri()
    1646     // as this conflicts with wp_redirect()
     1646    // as this conflicts with wp_redirect()
    16471647    $bp_no_status_set = true;
    16481648
     
    17951795function bp_core_ucfirst( $str ) {
    17961796    if ( function_exists( 'mb_strtoupper' ) && function_exists( 'mb_substr' ) ) {
    1797         $fc = mb_strtoupper( mb_substr( $str, 0, 1 ) );
    1798         return $fc.mb_substr( $str, 1 );
     1797        $fc = mb_strtoupper( mb_substr( $str, 0, 1 ) );
     1798        return $fc.mb_substr( $str, 1 );
    17991799    } else {
    18001800        return ucfirst( $str );
Note: See TracChangeset for help on using the changeset viewer.