Changeset 61641
- Timestamp:
- 02/13/2026 11:58:58 PM (4 weeks ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/deprecated.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/deprecated.php
r61636 r61641 1821 1821 * @see _n() 1822 1822 */ 1823 function __ngettext( ...$args ) { // phpcs:ignore PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.FunctionDoubleUnderscore1823 function __ngettext( ...$args ) { 1824 1824 _deprecated_function( __FUNCTION__, '2.8.0', '_n()' ); 1825 1825 return _n( ...$args ); … … 1833 1833 * @see _n_noop() 1834 1834 */ 1835 function __ngettext_noop( ...$args ) { // phpcs:ignore PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.FunctionDoubleUnderscore1835 function __ngettext_noop( ...$args ) { 1836 1836 _deprecated_function( __FUNCTION__, '2.8.0', '_n_noop()' ); 1837 1837 return _n_noop( ...$args );
Note: See TracChangeset
for help on using the changeset viewer.