From 5c283f52ba9e2cbf88ddfe6e2d3ab8f2387143c9 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: http://core.svn.wordpress.org/trunk@23204 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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