2003-04-01 09:12:34 -05:00
|
|
|
<?php
|
2008-05-25 11:50:15 -04:00
|
|
|
/**
|
|
|
|
* Used to be the page which displayed the registration form.
|
|
|
|
*
|
|
|
|
* This file is no longer used in WordPress and is
|
|
|
|
* deprecated.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @deprecated Use wp_register() to create a registration link instead
|
|
|
|
*/
|
2003-06-20 01:16:08 -04:00
|
|
|
|
2008-05-21 01:59:27 -04:00
|
|
|
require('./wp-load.php');
|
2010-10-27 06:43:43 -04:00
|
|
|
wp_redirect( site_url('wp-login.php?action=register') );
|
2010-12-09 13:02:54 -05:00
|
|
|
exit;
|