9 lines
190 B
PHP
9 lines
190 B
PHP
<?php
|
|
require_once '../startup.php';
|
|
|
|
include_once '_user.php';
|
|
|
|
if(isset($_GET['key']) && is_string($_GET['key']))
|
|
activate_user($_GET['key']);
|
|
|
|
header('Location: /login?m=activated');
|