Make WordPress Core


Ignore:
Timestamp:
01/08/2010 08:29:55 AM (14 years ago)
Author:
westi
Message:

Deprecate get_alloptions(). Fixes #4915 props nacin.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/deprecated.php

    r12526 r12656  
    19001900    return before_last_bar( _n( $single, $plural, $number, $domain ) );
    19011901}
     1902
     1903/**
     1904 * Retrieve all autoload options, or all options if no autoloaded ones exist.
     1905 *
     1906 * @since 1.0.0
     1907 * @deprecated 3.0.0
     1908 * @deprecated Use wp_load_alloptions())
     1909 * @see wp_load_alloptions()
     1910 *
     1911 * @return array List of all options.
     1912 */
     1913function get_alloptions() {
     1914    _deprecated_function( __FUNCTION__, '3.0', 'wp_load_alloptions()' );
     1915    return wp_load_alloptions();
     1916}
    19021917?>
Note: See TracChangeset for help on using the changeset viewer.