Changeset 21838 for trunk/wp-admin/includes/template.php
- Timestamp:
- 09/13/2012 05:28:57 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/template.php
r21791 r21838 1041 1041 1042 1042 if ( 'misc' == $page ) { 1043 _deprecated_argument( __FUNCTION__, '3.0', __( 'The miscellaneous options group has been removed. Use another settings group.' ) );1043 _deprecated_argument( __FUNCTION__, '3.0', sprintf( __( 'The "%s" options group has been removed. Use another settings group.' ), 'misc' ) ); 1044 1044 $page = 'general'; 1045 } 1046 1047 if ( 'privacy' == $page ) { 1048 _deprecated_argument( __FUNCTION__, '3.5', sprintf( __( 'The "%s" options group has been removed. Use another settings group.' ), 'privacy' ) ); 1049 $page = 'reading'; 1045 1050 } 1046 1051 … … 1083 1088 _deprecated_argument( __FUNCTION__, '3.0', __( 'The miscellaneous options group has been removed. Use another settings group.' ) ); 1084 1089 $page = 'general'; 1090 } 1091 1092 if ( 'privacy' == $page ) { 1093 _deprecated_argument( __FUNCTION__, '3.5', __( 'The privacy options group has been removed. Use another settings group.' ) ); 1094 $page = 'reading'; 1085 1095 } 1086 1096
Note: See TracChangeset
for help on using the changeset viewer.