Changeset 1044 for trunk/bp-core.php
- Timestamp:
- 02/09/2009 10:11:23 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core.php
r1032 r1044 1281 1281 1282 1282 /** 1283 * bp_core_ucfirst() 1284 * 1285 * Localization save ucfirst() support. 1286 * 1287 * @package BuddyPress Core 1288 */ 1289 function bp_core_ucfirst( $str ) { 1290 $fc = mb_strtoupper(mb_substr($str, 0, 1)); 1291 return $fc.mb_substr($str, 1); 1292 } 1293 1294 /** 1283 1295 * bp_core_clear_cache() 1284 1296 * REQUIRES WP-SUPER-CACHE
Note: See TracChangeset
for help on using the changeset viewer.