Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
02/09/2009 10:11:23 PM (16 years ago)
Author:
apeatling
Message:

Fixes #460

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-core/bp-core-templatetags.php

    r1032 r1044  
    240240            $data = $ud->display_name;
    241241        } else {
    242             $data = ucfirst($data);
     242            $data = bp_core_ucfirst($data);
    243243        }
    244244    } else {
     
    312312   
    313313    if ( $capitalize )
    314         $youtext = ucfirst($youtext);
     314        $youtext = bp_core_ucfirst($youtext);
    315315   
    316316    if ( $bp->displayed_user->id == $bp->loggedin_user->id ) {
     
    332332   
    333333    if ( $capitalize )
    334         $yourtext = ucfirst($yourtext);
     334        $yourtext = bp_core_ucfirst($yourtext);
    335335   
    336336    if ( $bp->displayed_user->id == $bp->loggedin_user->id ) {
Note: See TracChangeset for help on using the changeset viewer.