Make WordPress Core


Ignore:
Timestamp:
11/02/2019 08:28:31 PM (6 years ago)
Author:
SergeyBiryukov
Message:

Docs: Correct version number in @deprecated tags for PHP 4 constructors in pomo/entry.php and pomo/streams.php.

Follow-up to [46629].

Props jrf.
See #48252.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/pomo/entry.php

    r46629 r46631  
    6767         * PHP4 constructor.
    6868         *
    69          * @deprecated 5.3.0 Use __construct() instead.
     69         * @deprecated 5.4.0 Use __construct() instead.
    7070         *
    7171         * @see Translation_Entry::__construct()
    7272         */
    7373        public function Translation_Entry( $args = array() ) {
    74             _deprecated_constructor( self::class, '5.3.0', static::class );
     74            _deprecated_constructor( self::class, '5.4.0', static::class );
    7575            self::__construct( $args );
    7676        }
Note: See TracChangeset for help on using the changeset viewer.