mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-03 01:09:39 +01:00
e3b46b25d3
git-svn-id: http://svn.automattic.com/wordpress/trunk@19712 1a063a9b-81f0-0310-95a4-ce76da25c4cd
15 lines
331 B
PHP
15 lines
331 B
PHP
<?php
|
|
/**
|
|
* 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
|
|
*/
|
|
|
|
require('./wp-load.php');
|
|
wp_redirect( site_url('wp-login.php?action=register') );
|
|
exit;
|