mirror of
https://github.com/scratchfoundation/swiki-confirmaccount.git
synced 2024-12-04 12:51:01 -05:00
parent
189a15cf2f
commit
d703ac6de4
2 changed files with 2 additions and 2 deletions
|
@ -90,7 +90,7 @@ class AccountRequestSubmission {
|
||||||
}
|
}
|
||||||
|
|
||||||
//before we continue, verify user
|
//before we continue, verify user
|
||||||
$code = preg_replace('%\d+%', '', sha1($_SERVER['REMOTE_ADDR'] . date('m')));
|
$code = sha1($_SERVER['REMOTE_ADDR'] . date('m'));
|
||||||
$data = file_get_contents('http://scratch.mit.edu/site-api/comments/project/10135908/?page=1&salt=' . md5(time())); //add the salt so it doesn't cache
|
$data = file_get_contents('http://scratch.mit.edu/site-api/comments/project/10135908/?page=1&salt=' . md5(time())); //add the salt so it doesn't cache
|
||||||
if (!$data) {
|
if (!$data) {
|
||||||
return array('api_failed', 'Accessing the API to verify your registration failed. Please try again later.');
|
return array('api_failed', 'Accessing the API to verify your registration failed. Please try again later.');
|
||||||
|
|
|
@ -212,7 +212,7 @@ class RequestAccountPage extends SpecialPage {
|
||||||
//Scratch user verification
|
//Scratch user verification
|
||||||
$form .= '<fieldset>';
|
$form .= '<fieldset>';
|
||||||
$form .= '<legend>User verification</legend>';
|
$form .= '<legend>User verification</legend>';
|
||||||
$form .= '<p>Please go to the <a href="http://scratch.mit.edu/projects/10135908/">user verification project</a> and comment the following code:<br /><b>' . preg_replace('%\d+%', '', sha1($_SERVER['REMOTE_ADDR'] . date('m'))) . '</b></p>' . "\n";
|
$form .= '<p>Please go to the <a href="http://scratch.mit.edu/projects/10135908/">user verification project</a> and comment the following code:<br /><b>' . sha1($_SERVER['REMOTE_ADDR'] . date('m')) . '</b></p>' . "\n";
|
||||||
$form .= '</fieldset>';
|
$form .= '</fieldset>';
|
||||||
|
|
||||||
//Set temporary password
|
//Set temporary password
|
||||||
|
|
Loading…
Reference in a new issue