Make WordPress Core

Changeset 23204


Ignore:
Timestamp:
12/26/2012 08:35:27 PM (13 years ago)
Author:
nacin
Message:

Correct the deprecated notice in AtomPub's deprecated class. see #22855.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/pluggable-deprecated.php

    r21818 r23204  
    183183    class wp_atom_server {
    184184        public function __call( $name, $arguments ) {
    185             _deprecated_function( __CLASS__ . '::' . $name, '3.5', 'the Atom Publishing Platform plugin' );
     185            _deprecated_function( __CLASS__ . '::' . $name, '3.5', 'the Atom Publishing Protocol plugin' );
    186186        }
    187187
    188188        public static function __callStatic( $name, $arguments ) {
    189             _deprecated_function( __CLASS__ . '::' . $name, '3.5', 'the Atom Publishing Platform plugin' );
     189            _deprecated_function( __CLASS__ . '::' . $name, '3.5', 'the Atom Publishing Protocol plugin' );
    190190        }
    191191    }
Note: See TracChangeset for help on using the changeset viewer.