Skip to:
Content

BuddyPress.org

Changeset 1044 for trunk/bp-core.php


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.php

    r1032 r1044  
    12811281
    12821282/**
     1283 * bp_core_ucfirst()
     1284 *
     1285 * Localization save ucfirst() support.
     1286 *
     1287 * @package BuddyPress Core
     1288 */
     1289function bp_core_ucfirst( $str ) {
     1290    $fc = mb_strtoupper(mb_substr($str, 0, 1));
     1291    return $fc.mb_substr($str, 1);
     1292}
     1293
     1294/**
    12831295 * bp_core_clear_cache()
    12841296 * REQUIRES WP-SUPER-CACHE
Note: See TracChangeset for help on using the changeset viewer.