public
Description: Wordpress project to create a distributed social-bookmark website
Homepage: http://bookmark.alexgirard.com/tag/pressmark
Clone URL: git://github.com/alx/pressmark.git
Click here to lend your support to: pressmark and make a donation at www.pledgie.com !
pressmark / wp-register.php
100644 15 lines (13 sloc) 0.316 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?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('wp-login.php?action=register');
 
?>