2004-05-24 20:24:12 +02:00
|
|
|
<?php
|
2008-05-25 17:50:15 +02:00
|
|
|
/**
|
2008-10-14 08:22:52 +02:00
|
|
|
* Redirects to the Atom feed
|
|
|
|
* This file is deprecated and only exists for backwards compatibility
|
2008-05-25 17:50:15 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
*/
|
2004-05-24 20:24:12 +02:00
|
|
|
|
2008-10-14 08:22:52 +02:00
|
|
|
require( './wp-load.php' );
|
|
|
|
wp_redirect( get_bloginfo( 'atom_url' ), 301 );
|
2004-02-05 21:55:50 +01:00
|
|
|
|
2007-02-23 03:50:05 +01:00
|
|
|
?>
|