diff -r f507feede89a -r 09a1c134465b web/wp-includes/pluggable-deprecated.php --- a/web/wp-includes/pluggable-deprecated.php Wed Dec 19 12:35:13 2012 -0800 +++ b/web/wp-includes/pluggable-deprecated.php Wed Dec 19 17:46:52 2012 -0800 @@ -168,3 +168,25 @@ else : _deprecated_function( 'wp_login', '2.5', 'wp_signon()' ); endif; + +/** + * WordPress AtomPub API implementation. + * + * Originally stored in wp-app.php, and later wp-includes/class-wp-atom-server.php. + * It is kept here in case a plugin directly referred to the class. + * + * @since 2.2.0 + * @deprecated 3.5.0 + * @link http://wordpress.org/extend/plugins/atom-publishing-protocol/ + */ +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' ); + } + + public static function __callStatic( $name, $arguments ) { + _deprecated_function( __CLASS__ . '::' . $name, '3.5', 'the Atom Publishing Platform plugin' ); + } + } +} \ No newline at end of file