Changeset 46290 for trunk/src/wp-includes/deprecated.php
- Timestamp:
- 09/25/2019 01:46:55 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/deprecated.php
r46225 r46290 1799 1799 * @see _n() 1800 1800 */ 1801 function __ngettext( ...$args ) { 1801 function __ngettext( ...$args ) { // phpcs:ignore PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.FunctionDoubleUnderscore 1802 1802 _deprecated_function( __FUNCTION__, '2.8.0', '_n()' ); 1803 1803 return _n( ...$args ); … … 1811 1811 * @see _n_noop() 1812 1812 */ 1813 function __ngettext_noop( ...$args ) { 1813 function __ngettext_noop( ...$args ) { // phpcs:ignore PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.FunctionDoubleUnderscore 1814 1814 _deprecated_function( __FUNCTION__, '2.8.0', '_n_noop()' ); 1815 1815 return _n_noop( ...$args );
Note: See TracChangeset
for help on using the changeset viewer.