Changeset 21838 for trunk/wp-admin/includes/plugin.php
- Timestamp:
- 09/13/2012 05:28:57 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/plugin.php
r21812 r21838 1625 1625 1626 1626 if ( 'misc' == $option_group ) { 1627 _deprecated_argument( __FUNCTION__, '3.0', __( 'The miscellaneous options group has been removed. Use another settings group.' ) );1627 _deprecated_argument( __FUNCTION__, '3.0', sprintf( __( 'The "%s" options group has been removed. Use another settings group.' ), 'misc' ) ); 1628 1628 $option_group = 'general'; 1629 } 1630 1631 if ( 'privacy' == $option_group ) { 1632 _deprecated_argument( __FUNCTION__, '3.5', sprintf( __( 'The "%s" options group has been removed. Use another settings group.' ), 'privacy' ) ); 1633 $option_group = 'reading'; 1629 1634 } 1630 1635 … … 1648 1653 1649 1654 if ( 'misc' == $option_group ) { 1650 _deprecated_argument( __FUNCTION__, '3.0', __( 'The miscellaneous options group has been removed. Use another settings group.' ) );1655 _deprecated_argument( __FUNCTION__, '3.0', sprintf( __( 'The "%s" options group has been removed. Use another settings group.' ), 'misc' ) ); 1651 1656 $option_group = 'general'; 1657 } 1658 1659 if ( 'privacy' == $option_group ) { 1660 _deprecated_argument( __FUNCTION__, '3.5', sprintf( __( 'The "%s" options group has been removed. Use another settings group.' ), 'privacy' ) ); 1661 $option_group = 'reading'; 1652 1662 } 1653 1663
Note: See TracChangeset
for help on using the changeset viewer.