From 9d74b713b543e387d41cd9dfd4c982ab34305ba6 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Wed, 26 Dec 2012 20:35:27 +0000 Subject: [PATCH] Correct the deprecated notice in AtomPub's deprecated class. see #22855. git-svn-id: https://develop.svn.wordpress.org/trunk@23204 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/pluggable-deprecated.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/pluggable-deprecated.php b/wp-includes/pluggable-deprecated.php index 69e78f5f95..b38e5323ec 100644 --- a/wp-includes/pluggable-deprecated.php +++ b/wp-includes/pluggable-deprecated.php @@ -182,11 +182,11 @@ endif; if ( ! class_exists( 'wp_atom_server' ) ) { class wp_atom_server { public function __call( $name, $arguments ) { - _deprecated_function( __CLASS__ . '::' . $name, '3.5', 'the Atom Publishing Platform plugin' ); + _deprecated_function( __CLASS__ . '::' . $name, '3.5', 'the Atom Publishing Protocol plugin' ); } public static function __callStatic( $name, $arguments ) { - _deprecated_function( __CLASS__ . '::' . $name, '3.5', 'the Atom Publishing Platform plugin' ); + _deprecated_function( __CLASS__ . '::' . $name, '3.5', 'the Atom Publishing Protocol plugin' ); } } } \ No newline at end of file