2003-04-01 16:12:34 +02:00
|
|
|
<?php
|
2008-05-25 17:50:15 +02: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 07:16:08 +02:00
|
|
|
|
2008-05-21 07:59:27 +02:00
|
|
|
require('./wp-load.php');
|
2010-10-27 12:43:43 +02:00
|
|
|
wp_redirect( site_url('wp-login.php?action=register') );
|
2010-12-09 19:02:54 +01:00
|
|
|
exit;
|