Changeset 13102 for trunk/wp-includes/functions.php
- Timestamp:
- 02/13/2010 08:59:04 AM (16 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/functions.php (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r13069 r13102 3342 3342 } 3343 3343 3344 /** 3345 * {@internal Missing Short Description}} 3346 * 3347 * @since 2.8 3348 * 3349 * @param unknown_type $key 3350 * @param unknown_type $default 3351 * @param unknown_type $use_cache 3352 * @return unknown 3353 */ 3344 3354 function get_site_option( $key, $default = false, $use_cache = true ) { 3345 3355 global $wpdb; … … 3372 3382 } 3373 3383 3374 // expects $key, $value not to be SQL escaped 3384 /** 3385 * {@internal Missing Short Description}} 3386 * 3387 * @since 2.8 3388 * 3389 * @param unknown_type $key not to be SQL escaped 3390 * @param unknown_type $value not to be SQL escaped 3391 * @return unknown 3392 */ 3375 3393 function add_site_option( $key, $value ) { 3376 3394 global $wpdb; … … 3400 3418 } 3401 3419 3420 /** 3421 * {@internal Missing Short Description}} 3422 * 3423 * @since 2.9 3424 * 3425 * @param unknown_type $key 3426 * @return unknown 3427 */ 3402 3428 function delete_site_option( $key ) { 3403 3429 global $wpdb; … … 3424 3450 } 3425 3451 3426 // expects $key, $value not to be SQL escaped 3452 /** 3453 * {@internal Missing Short Description}} 3454 * 3455 * @since 2.8.0 3456 * 3457 * @param unknown_type $key not to be SQL escaped 3458 * @param unknown_type $value not to be SQL escaped 3459 * @return unknown 3460 */ 3427 3461 function update_site_option( $key, $value ) { 3428 3462 global $wpdb; … … 3456 3490 * Delete a site transient 3457 3491 * 3458 * @since 2. 8903492 * @since 2.9.0 3459 3493 * @package WordPress 3460 3494 * @subpackage Transient … … 3578 3612 * 3579 3613 * Overrides the gmt_offset option if we have a timezone_string available 3614 * 3615 * @since 2.8 3616 * 3617 * @return unknown 3580 3618 */ 3581 3619 function wp_timezone_override_offset() { … … 3597 3635 /** 3598 3636 * Check for PHP timezone support 3637 * 3638 * @since 2.9 3639 * 3640 * @return unknown 3599 3641 */ 3600 3642 function wp_timezone_supported() { … … 3611 3653 } 3612 3654 3655 /** 3656 * {@internal Missing Short Description}} 3657 * 3658 * @since 2.9 3659 * 3660 * @param unknown_type $a 3661 * @param unknown_type $b 3662 * @return unknown 3663 */ 3613 3664 function _wp_timezone_choice_usort_callback( $a, $b ) { 3614 3665 // Don't use translated versions of Etc … … 3652 3703 * Gives a nicely formatted list of timezone strings // temporary! Not in final 3653 3704 * 3654 * @param $selected_zone string Selected Zone 3655 * 3705 * @since 2.9 3706 * 3707 * @param string $selected_zone Selected Zone 3708 * @return string 3656 3709 */ 3657 3710 function wp_timezone_choice( $selected_zone ) {
Note: See TracChangeset
for help on using the changeset viewer.