Updated configuration data loading Added Website and Game models Signed-off-by: Gregory PLANCHAT <g.planchat@gmail.com>
9 lines
No EOL
216 B
PHP
9 lines
No EOL
216 B
PHP
<?php
|
|
|
|
include './bootstrap.php';
|
|
|
|
$username = uniqid();
|
|
$email = $username . '@wootook.org';
|
|
$password = substr(sha1(uniqid()), mt_rand(0, 32), 8);
|
|
|
|
Wootook_Empire_Model_User::register($username, $email, $password); |