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');
|
2006-10-04 18:47:50 +02:00
|
|
|
wp_redirect('wp-login.php?action=register');
|
2005-07-12 17:53:13 +02:00
|
|
|
|
2006-10-04 18:47:50 +02:00
|
|
|
?>
|